/* Navigation Styles */
.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #c8beb1;
    /*padding: 1rem 0;*/
  }
  
  .navbar-container {
    max-width: 1080px;
    margin: 0 auto;
    /*padding: 0 2rem;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-brand {
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    letter-spacing: 0.5px;
  }
  
  .logo {
    text-decoration: none;
    color: #5e5343;
    transition: color 0.3s ease;
  }
  
  a.logo {
    font-size: 1.5rem;
  }
  
  .navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .navbar-link {
    text-decoration: none;
    color: #333;
    font-family: Raleway, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .navbar-link:hover {
    color: #a68053;
  }
  
  .navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #a68053;
    transition: width 0.3s ease;
  }
  
  .navbar-link:hover::after {
    width: 100%;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    gap: 5px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .navbar-menu {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      width: 100%;
      flex-direction: column;
      background-color: rgba(255, 255, 255, 0.98);
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .navbar-menu.active {
      max-height: 500px;
    }
  
    .navbar-menu li {
      padding: 1rem 2rem;
      border-bottom: 1px solid #e5e5e5;
    }
  
    .navbar-link::after {
      display: none;
    }
  
    .navbar-container {
      padding: 0 1.5rem;
    }
  }
  