/* =========================================================================
   Piton des Neiges — Sentier d'Ascension (Design System & CSS Styles)
   ========================================================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500&family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Core Color Palette */
  --color-gold: #E8A76A;
  --color-coral: #D66B4B;
  --color-cream: #F5EFE6;
  --color-massif: #3A4A55;
  --color-massif-dark: #1A2530;
  --color-forest: #1F4A2C;
  --color-moss: #2E5A38;
  --color-cyan: #8FE3F0;

  /* Mode Light Default */
  --bg-primary: #F5EFE6;
  --bg-secondary: #EBE3D8;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-hover: rgba(255, 255, 255, 0.92);
  --bg-dark-card: #141C22;
  
  --text-primary: #1A2530;
  --text-secondary: #4A5864;
  --text-muted: #788896;
  
  --border-subtle: rgba(58, 74, 85, 0.12);
  --border-focus: rgba(232, 167, 106, 0.6);
  --shadow-sm: 0 4px 20px rgba(26, 37, 48, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 37, 48, 0.12);

  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Dark Mode Overrides */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0E1418;
    --bg-secondary: #141C22;
    --bg-card: rgba(20, 28, 34, 0.85);
    --bg-card-hover: rgba(26, 37, 46, 0.95);
    --text-primary: #F5EFE6;
    --text-secondary: #A0B0BC;
    --text-muted: #6B7C88;
    --border-subtle: rgba(245, 239, 230, 0.12);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  }
}

/* Explicit Manual Theme Overrides */
[data-theme="dark"] {
  --bg-primary: #0E1418;
  --bg-secondary: #141C22;
  --bg-card: rgba(20, 28, 34, 0.85);
  --bg-card-hover: rgba(26, 37, 46, 0.95);
  --text-primary: #F5EFE6;
  --text-secondary: #A0B0BC;
  --text-muted: #6B7C88;
  --border-subtle: rgba(245, 239, 230, 0.12);
}

[data-theme="light"] {
  --bg-primary: #F5EFE6;
  --bg-secondary: #EBE3D8;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-hover: rgba(255, 255, 255, 0.92);
  --text-primary: #1A2530;
  --text-secondary: #4A5864;
  --text-muted: #788896;
  --border-subtle: rgba(58, 74, 85, 0.12);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* 35mm Film Grain Overlay */
.film-grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Sticky Header / Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(14, 20, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: #FFF6E8;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-flag {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-brand:hover .nav-flag {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.footer-flag {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-badge {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(232, 167, 106, 0.2);
  color: var(--color-gold);
  border: 1px solid rgba(232, 167, 106, 0.4);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Cross-page Theme Switcher (navbar) */
.nav-switcher {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-switcher a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-switcher a:hover {
  color: #FFF6E8;
}

.nav-switcher a.is-active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF6E8;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  color: #FFF6E8;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.theme-toggle-btn:hover {
  opacity: 1.0;
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

/* Typography Helpers */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
}

/* SECTION 1: HERO */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF6E8;
  padding: 0 1.5rem;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  background-image: linear-gradient(to bottom, rgba(14, 20, 24, 0.4), rgba(14, 20, 24, 0.75)), url('../assets/photos/hero.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeIn 1.2s ease-out;
}

.hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: rgba(255, 246, 232, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.75);
  animation: bounce 2s infinite;
}

/* SECTION 2: GÉOLOGIE & STATS */
.geology-section {
  background-color: var(--bg-primary);
}

.geology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.geology-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.geology-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.geology-img-wrapper:hover .geology-img {
  transform: scale(1.03);
}

/* Stats Counter Banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-item {
  padding: 0 1rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--color-coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-unit {
  font-size: 0.6em;
  margin-left: 0.1em;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* SECTION 3: L'ASCENSION (3 ROUTES) */
.ascension-section {
  background-color: var(--bg-secondary);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}

/* Species Carousel (chronological species scroller) */
.species-carousel {
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.carousel-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.2rem 1.2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

.species-slide {
  scroll-snap-align: start;
  flex: 0 0 min(380px, 82vw);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.species-slide:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg);
}

.species-slide-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.species-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.species-slide:hover .species-slide-img img {
  transform: scale(1.05);
}

.species-index {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(14, 20, 24, 0.72);
  color: #FFF6E8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.species-slide-content {
  padding: 1.8rem;
  flex: 1;
}

.carousel-arrow {
  position: absolute;
  top: 110px;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.carousel-prev {
  left: -14px;
}

.carousel-next {
  right: -14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--color-gold);
  transform: scale(1.35);
}

.route-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.route-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg);
}

.route-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.route-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.route-specs {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-coral);
  padding: 0.4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.2rem;
}

.route-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--color-coral);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: var(--color-gold);
}

/* Convergence Card */
.convergence-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-massif-dark);
  color: #FFF6E8;
  border-radius: 16px;
  overflow: hidden;
  padding: 3rem;
}

.convergence-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

/* SECTION 4: LE RITUEL DU LEVER DE SOILEIL */
.sunrise-section {
  position: relative;
  color: #FFF6E8;
  padding: 10rem 0;
  overflow: hidden;
}

.sunrise-bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  background-image:  url('../assets/photos/sunrise.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.sunrise-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.sunrise-content .lead-text {
  color: rgba(255, 246, 232, 0.88);
  margin: 0 auto;
}

/* SECTION 5: PRATIQUE & PRÉPARATION */
.practical-section {
  background-color: var(--bg-primary);
}

.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem;
}

.info-box h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-coral);
}

.gear-list {
  list-style: none;
  margin-top: 1rem;
}

.gear-list li {
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gear-list li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
}

.notice-banner {
  grid-column: 1 / -1;
  background: rgba(31, 74, 44, 0.15);
  border: 1px solid rgba(31, 74, 44, 0.4);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.notice-icon {
  font-size: 2rem;
}

/* SECTION 6: CONTEXTE & CARTE INTERACTIVE */
.context-section {
  background-color: var(--bg-secondary);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.map-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Interactive Pins */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, z-index 0.25s ease;
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.15);
  z-index: 30;
}

.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-coral);
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pin-summit .pin-dot {
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 12px rgba(232, 167, 106, 0.8);
}

.pin-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 167, 106, 0.45);
  animation: pinPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pinPulse {
  0% { transform: translate(-50%, 0) scale(0.4); opacity: 0.9; }
  100% { transform: translate(-50%, 0) scale(1.8); opacity: 0; }
}

.pin-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(14, 20, 24, 0.88);
  color: #FFF6E8;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  margin-top: 0.35rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.map-pin:hover .pin-label {
  background: var(--color-coral);
  border-color: var(--color-gold);
}

/* SECTION 7: SOURCES & FOOTER */
.footer-section {
  background-color: var(--color-massif-dark);
  color: #FFF6E8;
  padding: 5rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--color-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 246, 232, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.email-obfuscated {
  font-size: 0.9rem;
  color: var(--color-cyan);
  cursor: pointer;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 246, 232, 0.5);
}

/* Scroll Revealer Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .geology-grid, .map-layout, .convergence-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .stats-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .practical-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .navbar {
    padding: 1rem 1.2rem;
  }
  .nav-switcher {
    display: none;
  }
  .carousel-arrow {
    display: none;
  }
  /* Disable Parallax movement on mobile for performance */
  .hero-bg, .sunrise-bg {
    transform: none !important;
  }
}

/* Accessibility Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
