/* Full hero CSS copied from 7RoutesHero/style.css */
/* ========================================================================== */
/* 7ROUTES - 1:1 LAYERED PARALLAX HERO & SITE STYLES */
/* ========================================================================== */

/* Custom Reset & Base */
html { scroll-behavior: smooth; background-color: #0b0c10; color: #e5e2e1; }
body { margin: 0; padding: 0; overflow-x: hidden; background-color: #0b0c10; font-family: 'Poppins', sans-serif; }
body.lock-scroll { overflow: hidden !important; touch-action: none; }

/* Navigation Bar */
#mainHeader { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(11,12,16,0.4); border-bottom: 1px solid rgba(255,255,255,0.08); }
#mainHeader.scrolled { background: rgba(11,12,16,0.92); border-bottom: 1px solid rgba(255,255,255,0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.7); }

/* Mobile navigation */
body.nav-menu-open { overflow: hidden !important; touch-action: none; }
#menuToggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; padding: 0; line-height: 1; position: relative; z-index: 1; }
@media (min-width: 768px) {
  #menuToggle { display: none !important; }
  #mobileNav { display: none !important; }
}
#mobileNav {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#mobileNav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
/* Keep header (menu/close toggle) above the full-screen overlay when open */
body.nav-menu-open #mainHeader {
  z-index: 70;
}
#mobileNavBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#mobileNavPanel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  gap: 2rem;
  padding: 6rem 2rem 2rem;
}

/* Hero Parallax */
.hero-parallax-wrapper { position: relative; width: 100vw; height: 100dvh; overflow: hidden; background-color: #000; }
.hero-sticky-frame { position: relative; width: 100vw; height: 100dvh; overflow: hidden; }
#contentSection { position: relative; z-index: 20; will-change: transform; }
.parallax-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; will-change: transform, opacity; }
/* Hide animated hero layers before JS initializes to prevent flash on load */
#layerStarsTop,
#layerStarsBottom,
#layerEarth,
#layerMoon,
#layerHeroTitle,
#layerAstronaut,
#scrollCue { visibility: hidden; }
.parallax-layer picture { display: block; width: 100%; height: 100%; }
.layer-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.layer-bg { z-index: 1; }
.layer-stars-top { z-index: 2; }
.layer-stars-bottom { z-index: 3; }
.layer-earth { z-index: 4; }
.layer-moon { z-index: 5; }
.layer-title-behind { z-index: 6; display: flex; align-items: center; justify-content: center; text-align: center; pointer-events: none; }
.hero-brand-title { font-family: 'Poppins', sans-serif; font-size: clamp(4.5rem,15vw,13.5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 0.9; color: #fff; text-shadow: 0 0 40px rgba(255,255,255,0.15); }
.layer-astronaut { z-index: 7; }
.scroll-cue { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.9; pointer-events: none; transition: opacity 0.4s ease; }
.scroll-mouse { width: 20px; height: 34px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px; display: flex; justify-content: center; padding-top: 5px; box-shadow: 0 0 15px rgba(255,255,255,0.2); }
.mouse-dot { width: 3px; height: 6px; background: #fff; border-radius: 2px; animation: mouseAnim 1.8s infinite; }
@keyframes mouseAnim { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
/* Additional site styles remain unchanged */
