/* ═══════════════════════════════════════════════
   NAVBAR STYLES
   ═══════════════════════════════════════════════ */
:root {
  --cream: var(--navbar-bg, #f5f0e6);
  --gold: #c9a84c;
  --gold-light: rgb(240, 208, 128);
  --dark: #2a1a0e;
  --maroon: #3d1f1f;
  --text-muted: #7a6e62;
  --nav-height: 70px;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--navbar-bg);
  display: flex;
  align-items: center;
  padding: 0 60px;
  gap: 60px;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.4s ease;
  border-bottom: 1px solid var(--border-gold);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(42,26,14,0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-wrap img {
  width: 110px;
  height: 50px;
  object-fit: contain;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 70px;
  list-style: none;
  margin-left: auto;
  margin-right: 30px;
}

.nav-links a {
  font-family: 'EngGothic', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a svg {
  opacity: 0.5;
  transition: opacity 0.25s;
  flex-shrink: 0;
}

.nav-links a:hover svg {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Book Button */
.btn-book {
  font-family: 'EngGothic', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--maroon);
  border: none;
  transform: translateX(-10px);
  border-radius: 30px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .btn-book {
    animation: nav-pulse-glow 2s ease-in-out infinite;
  }
  .btn-book:hover {
    background: #5a2a2a;
    animation: none;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.5);
  }
}

@keyframes nav-pulse-glow {
  0%, 100% { box-shadow: 0 0 5px #5a2a2a; }
  50% { box-shadow: 0 0 20px #5a2a2a, 0 0 25px #5a2a2a; }
}

/* Nav Actions Wrapper */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navbar-bg);
  padding: 30px 40px 40px;
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(42,26,14,0.21);
  flex-direction: column;
  gap: 0;
  z-index: 999;
  animation: slideDown 0.3s ease forwards;
}

.mobile-menu.open { display: flex; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu a svg {
  opacity: 0.45;
  flex-shrink: 0;
}

.mobile-menu a:hover svg {
  opacity: 1;
}

.mobile-menu a:hover { color: var(--text-primary); }

.mobile-menu .btn-book {
  margin-top: 24px;
  text-align: center;
  display: block;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .btn-book.desktop { display: none; }
  .hamburger { display: flex; }
  .hamburger span { background: #000000; }
  .navbar { padding: 0 24px; }
  .nav-actions { margin-left: auto; }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .nav-links { gap: 40px; }
  .nav-links a { font-size: 16px; }
  .navbar { gap: 30px; padding: 0 30px; }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  .nav-links { gap: 50px; }
  .nav-links a { font-size: 17px; }
  .navbar { gap: 40px; padding: 0 40px; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 16px; }
  .btn-book { color: #ffffff !important; }
  .logo-wrap img { width: 90px; height: 40px; }
}

/* ── Theme Toggle ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

[data-theme="dark"] .hamburger span {
  background: #e8e0d8;
}

@media (min-width: 1201px) {
  .nav-actions {
    margin-left: 0;
  }
}
