/* ── L'Auberge De L'Aéroport — Shared Styles ── */

:root {
  --crimson: #7a1515;
  --crimson-dark: #5a0e0e;
  --crimson-pale: #f9f0f0;
  --crimson-mist: #f2e8e8;
  --gold: #b8860b;
  --green: #1a6b3a;
  --bg: #f7f4f2;
  --card: #ffffff;
  --text: #1c1010;
  --text-mid: #5a4040;
  --text-light: #8a7070;
  --border: #e4d8d8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
}
/* ── DARK MODE ── */
[data-theme="dark"] {
  --bg: #121212;
  --card: #1e1e1e;
  --text: #e8e0dc;
  --text-mid: #b0a098;
  --text-light: #887870;
  --border: #2e2828;
  --crimson-pale: #2a1818;
  --crimson-mist: #241414;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
  --crimson: #e04444;
  --crimson-dark: #c83636;
  --gold: #e8b830;
}
[data-theme="dark"] nav {
  background: rgba(18,18,18,0.92);
}
[data-theme="dark"] .mobile-nav {
  background: var(--card);
}
[data-theme="dark"] .hamburger span {
  background: var(--text);
}
[data-theme="dark"] .page-header::after {
  background: var(--bg);
}
[data-theme="dark"] footer {
  background: #0a0a0a;
}
[data-theme="dark"] .btn-cta {
  background: var(--crimson);
  color: #fff;
}
[data-theme="dark"] .btn-cta:hover {
  background: var(--crimson-dark);
}
[data-theme="dark"] body {
  background-image: none;
}
.theme-btn {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-light); cursor: pointer; background: none;
  border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 0.35rem 0.75rem; font-family: 'Jost', sans-serif;
  transition: all 0.2s; min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}
.theme-btn:hover { border-color: var(--crimson); color: var(--crimson); }

/* Auto dark mode for users who haven't set a preference yet */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #121212;
    --card: #1e1e1e;
    --text: #e8e0dc;
    --text-mid: #b0a098;
    --text-light: #887870;
    --border: #2e2828;
    --crimson-pale: #2a1818;
    --crimson-mist: #241414;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
  }
  :root:not([data-theme="light"]) nav { background: rgba(18,18,18,0.92); }
  :root:not([data-theme="light"]) .mobile-nav { background: #1e1e1e; }
  :root:not([data-theme="light"]) .hamburger span { background: #e8e0dc; }
  :root:not([data-theme="light"]) .page-header::after { background: #121212; }
  :root:not([data-theme="light"]) footer { background: #0a0a0a; }
  :root:not([data-theme="light"]) .btn-cta { background: #7a1515; color: #fff; }
  :root:not([data-theme="light"]) body { background-image: none; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 30% 0%, rgba(122,21,21,0.02) 0%, transparent 60%);
  color: var(--text);
  line-height: 1.6;
}
:focus-visible { outline: 3px solid var(--crimson); outline-offset: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,244,242,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-logo { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--crimson); }
.nav-cta {
  background: var(--crimson); color: white !important;
  padding: 0.55rem 1.25rem; border-radius: 0.75rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--crimson-dark); box-shadow: var(--shadow-md); color: white !important; }
.nav-cta:active { transform: scale(0.97); }
.lang-btn {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-light); cursor: pointer; background: none;
  border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 0.35rem 0.75rem; font-family: 'Jost', sans-serif;
  transition: all 0.2s; min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lang-btn:hover { border-color: var(--crimson); color: var(--crimson); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; z-index: 110;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 99; }
.mobile-nav-overlay.active { display: block; }
.mobile-nav {
  display: none; position: fixed; top: 64px; right: 0; width: 280px; max-width: 85vw;
  height: calc(100vh - 64px); background: var(--card); box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 101; padding: 2rem 1.5rem; flex-direction: column; gap: 0.25rem;
  overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-nav.active { display: flex; transform: translateX(0); }
.mobile-nav a {
  display: flex; font-size: 1rem; font-weight: 600; color: var(--text-mid);
  text-decoration: none; padding: 0.85rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s; min-height: 44px; align-items: center;
}
.mobile-nav a:hover { color: var(--crimson); }
.mobile-nav .nav-cta { display: block; text-align: center; margin-top: 1rem; padding: 0.85rem 1.25rem; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(160deg, var(--crimson-dark) 0%, var(--crimson) 55%, #9b2525 100%);
  padding: 8rem 1.5rem 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--bg); clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 500; color: white; line-height: 1.15; letter-spacing: -0.015em;
  text-wrap: balance; position: relative; z-index: 1;
}
.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-top: 0.75rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}

/* ── SECTIONS ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--crimson); margin-bottom: 0.75rem;
  display: inline-block;
}
.section-label::after { content: ''; display: block; width: 32px; height: 2px; background: var(--gold); margin-top: 0.5rem; }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500; color: var(--text); line-height: 1.2; margin-bottom: 1rem;
  letter-spacing: -0.015em; text-wrap: balance;
}

/* ── CTA BANNER ── */
.cta-section {
  background: var(--crimson-dark); padding: 5rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(to bottom, transparent, rgba(28,28,28,0.15));
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500; color: white; margin-bottom: 0.75rem; position: relative; z-index: 1;
}
.cta-section p {
  font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.btn-cta {
  display: inline-block; background: white; color: var(--crimson-dark);
  padding: 1.1rem 2.5rem; border-radius: 0.75rem; font-family: 'Jost', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: background 0.2s, box-shadow 0.2s;
  position: relative; z-index: 1;
}
.btn-cta:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.btn-cta:active { transform: scale(0.97); }

/* ── FOOTER ── */
footer {
  background: #1c1c1c; color: rgba(255,255,255,0.45);
  padding: 3.5rem 1.5rem 2rem; font-size: 0.82rem; line-height: 1.8;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand .footer-logo { height: 60px; width: auto; margin-bottom: 1rem; border-radius: 4px; opacity: 0.85; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.footer-contact-item span {
  width: 20px; height: 20px; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.5); flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.85rem; transition: color 0.2s; }
.footer-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem 0; margin-bottom: 1rem; opacity: 0.5;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.trust-badge svg { flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.78rem; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--crimson); z-index: 200; transition: width 0.1s linear; width: 0%; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-header { padding: 6rem 1.25rem 3rem; }
  section { padding: 3rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-section { padding: 3.5rem 1.25rem; }
  .btn-cta { display: block; text-align: center; }
}
@media (max-width: 480px) {
  .page-header { padding: 5.5rem 1rem 3rem; }
  section { padding: 2.5rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
