/* Navigation Styles */
nav {
  width: 100%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.17);
  background-color: white;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 100;
  align-items: center;
  left: 0;
}

.nav-container .button {
  background-color: #05361a !important;
  color: #B6DB8C !important;
}
.nav-container .button:hover {
  background-color: #aad13f !important;
  color: #05361a !important;
}

a {
    text-decoration: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  flex-shrink: 0;
  width: 85%;
  max-width: 1400px;
}



.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-logo a {
    margin-top: 8px;
}

.nav-logo:hover {
  cursor: pointer;
}

.nav-left-tray {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  width: 132px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  font-size: 1rem;
}

.nav-links a {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}

.nav-links a:hover {
  color: #05361a;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}

.login-link:hover {
  color: #05361a;
}

.nav-hamburger {
    display: none;
}

.mobile-nav-links {
  display: none;
}

.nav-hamburger img {
  width: 32px;
  height: 32px;
}

/* Mobile responsive - needs to match existing mobile nav behavior */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
    cursor: pointer;
    margin-right: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-auth {
    display: none;
  }

  .mobile-nav-links {
    position: fixed;
    top: 36px;
    right: 20px;
    width: 220px;
    background-color: white;
    box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
    margin-top: 30px;
    z-index: 100;
    animation: fadeInMenu 0.4s ease-in-out;
  }

  .mobile-nav-links a {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }

  .mobile-nav-links a:hover {
    color: #05361a;
  }

  .mobile-nav-links .login-link {
    color: #707070;
  }

  .mobile-nav-links .button {
    background-color: #05361a !important;
    color: #B6DB8C !important;
    padding: 12px 18px;
    border-radius: 9px;
    text-align: center;
  }

  .mobile-nav-links .button:hover {
    background-color: #aad13f !important;
    color: #05361a !important;
  }

  @keyframes fadeInMenu {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
