/* ═══════════════════════════════════════════
   HEADER-DESKTOP.CSS
   The Sisters Offroad — Black horizontal navbar
   (Vertical/sidebar nav removed)
   ═══════════════════════════════════════════ */

/* ── SITE HEADER — z-index > .mobile-menu (10050) : le hamburger reste cliquable ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10080;
  height: auto;
  background: rgba(10, 8, 4, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 52px;
  transition: padding 0.4s ease;
}

/* ── LOGO ── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 4px;
}

/* Custom logo image */
.logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
}
.logo:hover img { opacity: 0.75; }

/* Text fallback */
.logo-main {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--sand, #D4A853);
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212, 168, 83, 0.45);
  margin-top: 2px;
}

/* ── HORIZONTAL NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: static;
}

.main-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

/* ── NAV LINKS — horizontal pill style ── */
.main-nav .menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  color: rgba(245, 237, 216, 0.65);
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
  line-height: 1.6;
  position: relative;
}

.main-nav .menu-item a::before {
  display: none;
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: #F5EDD8;
}

.main-nav .menu-item a:hover {
  color: #F5EDD8;
  background: rgba(255, 255, 255, 0.07);
}

/* ── RESERVE BUTTON ── */
.nav-reserve-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0A0804;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  margin-left: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-reserve-btn:hover {
  background: #E8A020;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.4);
}

/* ── Hide old nav-cta item (handled by reserve btn) ── */
.main-nav .nav-cta { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-header { padding: 18px 36px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .site-header {
    padding: 20px 24px;
  }
}

/* Desktop : le bouton / overlay mobile reste hors écran (évite double navigation) */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .mobile-menu:not(.open) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}