/*
 * Shared styles for all /book/* landing pages.
 * Each page sets its own --accent-a / --accent-b / --accent-gradient in
 * a <style> block BEFORE loading this file so colors cascade correctly.
 */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'DM Sans', -apple-system, sans-serif; background: #050b18; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --bg-deep: #050b18;
  --bg-card: #0f2035;
  --bg-card-soft: #0a1628;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.4);
  --border-soft: rgba(255, 255, 255, 0.06);
  /* Per-page overrides expected:
     --accent-a       primary accent color (hex)
     --accent-a-rgb   same as comma-separated RGB for rgba()
     --accent-b       bright variant (hex)
     --accent-b-rgb   comma-separated RGB
     --accent-gradient  linear-gradient() for headlines and pulse
     --accent-pulse   color for the live-dot in the eyebrow
  */
}

/* ─────── NAV ─────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(5, 11, 24, 0.78); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-soft); height: 88px; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-logo { display: flex; align-items: center; gap: 14px; color: var(--white); }
.nav-logo img { height: 60px; width: 60px; filter: drop-shadow(0 0 22px rgba(var(--accent-a-rgb), 0.5)); }
.nav-logo .wordmark { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 900; letter-spacing: 0.05em; line-height: 1; display: inline-flex; gap: 10px; align-items: baseline; text-shadow: 0 0 24px rgba(var(--accent-a-rgb), 0.25); }
.nav-logo .wordmark-thin { font-weight: 800; opacity: 0.95; letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-family: 'Geist', 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: -0.01em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-a); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-family: 'Geist', 'Inter', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: #ffffff; background: linear-gradient(135deg, #a78bfa 0%, #e879f9 100%); padding: 11px 22px; border-radius: 100px; box-shadow: 0 8px 24px rgba(167,139,250,0.35), 0 0 0 1px rgba(232,121,249,0.4) inset; transition: all 0.25s ease; }
.nav-signin:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,121,249,0.5), 0 0 0 1px rgba(255,255,255,0.25) inset; background: linear-gradient(135deg, #b99cfc 0%, #f190fc 100%); }
.nav-button { background: var(--accent-a); color: var(--bg-deep); font-size: 14px; font-weight: 600; padding: 11px 24px; border-radius: 100px; transition: all 0.2s; white-space: nowrap; }
.nav-button:hover { background: var(--accent-b); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(var(--accent-a-rgb), 0.3); }

/* ─────── HERO ─────── */
.page-hero { padding: 170px 32px 40px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(var(--accent-a-rgb), 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-a-rgb), 0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.page-hero::after { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-a-rgb), 0.08) 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.page-hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.eyebrow { display: inline-block; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-b); margin-bottom: 24px; padding: 11px 24px; background: rgba(var(--accent-b-rgb), 0.1); border: 1px solid rgba(var(--accent-b-rgb), 0.35); border-radius: 100px; font-weight: 700; box-shadow: 0 0 32px rgba(var(--accent-b-rgb), 0.18); }
.eyebrow .pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-pulse); box-shadow: 0 0 12px rgba(74,222,128,0.8); margin-right: 8px; vertical-align: middle; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.page-hero h1 { font-family: 'Inter', sans-serif; font-size: clamp(36px, 5.5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.gradient { background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: inline-block; padding-right: 0.04em; }
.page-hero .subhead { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-muted); max-width: 680px; margin: 0 auto 18px; font-weight: 300; line-height: 1.7; }
.hero-meta { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--text-dim); margin-top: 16px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--accent-a); }

/* ─────── BOOKING EMBED ─────── */
.booking-section { padding: 40px 32px 80px; position: relative; }
.booking-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-a-rgb), 0.05) 0%, transparent 70%); pointer-events: none; }
.booking-frame { max-width: 1000px; margin: 0 auto; background: var(--bg-card-soft); border: 1px solid rgba(var(--accent-a-rgb), 0.15); border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px rgba(var(--accent-a-rgb), 0.08); position: relative; }
.booking-frame iframe { display: block; width: 100%; border: none; background: #ffffff; }
.booking-fallback { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.booking-fallback a { color: var(--accent-a); font-weight: 600; }
.booking-fallback a:hover { text-decoration: underline; }

/* ─────── SECTIONS ─────── */
section.block { padding: 90px 32px; }
section.block.alt { background: #07101f; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: 'Inter', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 17px; font-weight: 300; max-width: 640px; margin: 0 auto; }

/* ─────── WHAT YOU'LL GET CARDS ─────── */
.get-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.get-card { background: var(--bg-card-soft); border: 1px solid var(--border-soft); border-radius: 18px; padding: 32px 26px; transition: border-color 0.3s, transform 0.3s; }
.get-card:hover { border-color: rgba(var(--accent-a-rgb), 0.15); transform: translateY(-3px); }
.get-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(var(--accent-a-rgb), 0.1); border: 1px solid rgba(var(--accent-a-rgb), 0.3); display: flex; align-items: center; justify-content: center; color: var(--accent-a); margin-bottom: 18px; }
.get-icon svg { width: 22px; height: 22px; }
.get-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; }
.get-card p { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

/* ─────── TRUST STRIP ─────── */
.trust-strip { display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 32px; background: var(--bg-card-soft); border: 1px solid var(--border-soft); border-radius: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: rgba(var(--accent-a-rgb), 0.1); border: 1px solid rgba(var(--accent-a-rgb), 0.25); display: flex; align-items: center; justify-content: center; color: var(--accent-a); }
.trust-ico svg { width: 20px; height: 20px; }
.trust-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dim); margin-bottom: 3px; font-weight: 700; font-family: 'Inter', sans-serif; }
.trust-value { font-size: 15px; color: var(--white); font-weight: 600; }
.trust-value a { color: var(--white); transition: color 0.2s; }
.trust-value a:hover { color: var(--accent-a); }

/* ─────── FAQ ─────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-card-soft); border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(var(--accent-a-rgb), 0.15); }
.faq-item summary { list-style: none; padding: 22px 26px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 12px; height: 12px; border-right: 2.5px solid var(--accent-a); border-bottom: 2.5px solid var(--accent-a); transform: rotate(45deg); transition: transform 0.25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body { padding: 0 26px 22px; color: var(--text-muted); font-size: 15px; font-weight: 300; line-height: 1.7; }
.faq-item .faq-body a { color: var(--accent-a); }

/* ─────── FINAL CTA ─────── */
.final-cta { padding: 100px 32px; text-align: center; background: linear-gradient(180deg, transparent, rgba(var(--accent-a-rgb), 0.04)); border-top: 1px solid var(--border-soft); }
.final-cta h2 { font-family: 'Inter', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.final-cta p { color: var(--text-muted); font-size: 17px; font-weight: 300; margin-bottom: 32px; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 15px; transition: all 0.2s; border: 1px solid transparent; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--accent-a); color: var(--bg-deep); }
.btn-primary:hover { background: var(--accent-b); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(var(--accent-a-rgb), 0.3); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { border-color: var(--accent-a); color: var(--accent-a); }
.final-cta .secondary-line { margin-top: 24px; font-size: 14px; color: var(--text-dim); }
.final-cta .secondary-line a { color: var(--accent-a); }

/* ─────── FOOTER ─────── */
.footer { background: #04091a; border-top: 1px solid var(--border-soft); padding: 64px 32px 32px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 48px; width: 48px; margin-bottom: 16px; }
.footer-brand h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 8px; }
.footer-brand .tagline { color: var(--text-dim); font-size: 13px; margin-bottom: 18px; }
.footer-brand .contact-info { color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.footer-brand .contact-info a { color: var(--text-muted); }
.footer-brand .contact-info a:hover { color: var(--accent-a); }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 18px; font-weight: 700; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-a); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 32px; border-top: 1px solid var(--border-soft); color: var(--text-dim); font-size: 13px; text-align: center; }

/* ─────── RESPONSIVE ─────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section.block { padding: 64px 24px; }
  .page-hero { padding: 140px 24px 28px; }
  .booking-section { padding: 28px 20px 64px; }
  .trust-strip { gap: 24px; padding: 24px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-cta { gap: 10px; }
  .nav-cta .nav-signin { display: none; }
  .nav-logo { gap: 10px; min-width: 0; }
  .nav-logo .wordmark { font-size: 20px; gap: 6px; }
  .nav-logo img { height: 40px; width: 40px; }
  .nav-button { font-size: 13px; padding: 9px 16px; }
  .get-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-frame { border-radius: 16px; }
}
@media (max-width: 400px) {
  .nav-logo .wordmark { display: none; }
  .nav-button { font-size: 12px; padding: 8px 14px; }
}
