:root {
  --forest: #0c1c14;
  --forest-mid: #152b1f;
  --forest-lt: #1e3d2c;
  --gold: #c9a55a;
  --line: rgba(201, 165, 90, 0.22);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
}

nav.scrolled {
  background: rgba(12, 28, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0 15px;
  height: 76px;
  line-height: 76px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--forest-mid);
  border: 1px solid var(--line);
  padding: 10px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 600;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s;
  height: auto;
  line-height: 1.5;
}

.dropdown-menu a:hover {
  color: var(--gold);
  padding-left: 30px;
}

/* Tours 2-column dropdown */
.dropdown-menu.tours-columns {
  min-width: 480px;
  column-count: 2;
  column-gap: 10px;
  padding: 15px 10px;
}

.dropdown-menu.tours-columns a {
  break-inside: avoid;
  padding: 10px 15px;
}

/* Destinations Dropdown Styles */
.dest-menu {
  min-width: 300px !important;
  padding: 8px 0 !important;
}

.dest-item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 20px !important;
  transition: background 0.3s !important;
}

.dest-item:hover {
  background: rgba(201, 165, 90, 0.05);
  padding-left: 20px !important; /* Reset inherited padding change */
}

.dest-flag {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.dest-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dest-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.dest-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.dest-item.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.nav-book {
  padding: 10px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.nav-book:hover {
  background: var(--gold);
  color: var(--forest);
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1000;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  nav {
    padding: 0 24px;
    background: rgba(12, 28, 20, 0.95); /* Ensure visibility on mobile */
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-book {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--forest);
  z-index: 450;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-links li {
  width: 100%;
}

.mobile-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mobile-links .active {
  color: var(--gold);
}

.mobile-dropdown-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  padding-left: 15px;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  border-left: 1px solid var(--line);
}

.mobile-dropdown-content a {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-book-btn {
  margin-top: auto;
  padding: 20px;
  background: var(--gold);
  color: var(--forest);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 13px;
}
