/* ============================================
   LIMO ADVENTURE OKC — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@400;600;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-bright: #F0C84A;
  --gold-dim: #7A6230;
  --gold-glow: rgba(201,168,76,0.15);
  --cream: #F5EDD6;
  --cream-dim: rgba(245,237,214,0.6);
  --dark: #090908;
  --dark2: #111110;
  --dark3: #1A1A18;
  --dark4: #222220;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Crimson Text', Georgia, serif;
  overflow-x: hidden;
  cursor: auto;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  background: rgba(9,9,8,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold-bright); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-links li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: rgba(245,237,214,0.55);
  text-decoration: none;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: rgba(201,168,76,0.35);
}

/* Dropdown */
.nav-links li.has-drop:hover .nav-dropdown { display: block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(9,9,8,0.99);
  border: 1px solid rgba(201,168,76,0.12);
  border-top: 2px solid var(--gold);
  min-width: 230px;
  padding: 8px 0;
  z-index: 300;
  backdrop-filter: blur(12px);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: rgba(245,237,214,0.6);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-bottom: none;
  height: auto;
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
.nav-dropdown .drop-emoji { margin-right: 6px; }
.nav-divider { width: 1px; height: 24px; background: rgba(201,168,76,0.12); margin: 0 8px; }

.nav-book {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.nav-book:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  padding: 16px 40px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.gold-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

/* ── EXPERIENCE CARDS (shared grid) ── */
.exp-card {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 36px 28px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.exp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-color, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.exp-card:hover::before { transform: scaleX(1); }

.exp-card:hover {
  background: var(--dark3);
  border-color: rgba(201,168,76,0.18);
  transform: translateY(-4px);
}

.exp-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.exp-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }

.exp-name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.exp-desc {
  font-family: 'Crimson Text', serif;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 18px;
}

.exp-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

/* ── BACK BREADCRUMB BAR ── */
.back-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 48px;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  background: rgba(9,9,8,0.6);
  backdrop-filter: blur(8px);
}
.back-bar a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-bar a:hover { color: var(--gold); }
.back-bar-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.2);
}
.back-bar-current {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(245,237,214,0.35);
}
@media (max-width: 700px) {
  .back-bar { padding: 10px 20px; }
}

/* ── ADD-ONS TABLE ── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.addon-item {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-name {
  font-family: 'Crimson Text', serif;
  font-size: 0.95rem;
  color: var(--cream);
}

.addon-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 12px;
}

/* ── FOOTER ── */
/* ── MEGA FOOTER ── */
.footer { background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.1); }

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 72px 64px 56px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover { color: var(--gold); border-color: var(--gold); }

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.footer-col a {
  display: block;
  font-family: 'Crimson Text', serif;
  font-size: 0.92rem;
  color: rgba(245,237,214,0.45);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.07);
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-note {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: rgba(245,237,214,0.2);
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: rgba(245,237,214,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-dim); }

/* Legacy compat */
.footer-links { display: flex; gap: 18px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: 'Bebas Neue', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--cream-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-note { font-family: 'Crimson Text', serif; font-size: 0.8rem; color: rgba(245,237,214,0.25); font-style: italic; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate { opacity: 0; }
.animate.in-view { animation: fadeUp 0.75s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 40px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-divider { display: none; }
  .nav-book { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Section padding */
  .how-section { padding: 60px 24px; }
  .tagline-band { padding: 60px 24px; }
  .testimonials { padding: 60px 24px; }
  .schedule-section { padding: 60px 24px; }
  .moments-header { padding: 60px 24px 32px; }
  .exp-section-head { padding: 0 24px 36px; }

  /* Experience cards — index */
  .exp-grid { grid-template-columns: repeat(2,1fr) !important; }
  .exp-card:nth-child(1),
  .exp-card:nth-child(4),
  .exp-card:nth-child(5) { grid-column: span 1 !important; min-height: 360px !important; }
  .exp-card { min-height: 300px !important; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Moments strip */
  .moments-strip { grid-template-columns: repeat(2,1fr); }

  /* Schedule */
  .schedule-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Exp hub grid — experiences.html */
  .exp-hub-grid { grid-template-columns: repeat(2,1fr) !important; padding-bottom: 60px; }
  .exp-hub-card:nth-child(1),
  .exp-hub-card:nth-child(4),
  .exp-hub-card:nth-child(5) { grid-column: span 1 !important; min-height: 360px !important; }
  .exp-hub-card { min-height: 300px !important; }

  /* Experience page heroes */
  .exp-hero { padding: 100px 24px 60px !important; }
  .exp-body { padding: 60px 24px !important; }

  /* Buttons */
  .btn-primary, .btn-ghost { padding: 14px 28px; font-size: .9rem; }
}

@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }

  /* Single column everything */
  .exp-grid { grid-template-columns: 1fr !important; }
  .exp-card { min-height: 280px !important; }
  .exp-hub-grid { grid-template-columns: 1fr !important; }
  .exp-hub-card { min-height: 280px !important; }
  .moments-strip { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Section padding */
  .how-section, .tagline-band, .testimonials,
  .schedule-section { padding-left: 16px; padding-right: 16px; }

  /* Tagline */
  .tagline-big { font-size: clamp(1.6rem,8vw,3rem); }

  /* Exp meta on hero pages */
  .exp-meta { gap: 16px; }
  .meta-item span { font-size: .95rem; }

  /* Role/spirit/step grids */
  .role-grid, .spirit-cards, .addons-grid { grid-template-columns: 1fr; }
}

/* ── EXP PAGE SHARED MOBILE ── */
@media (max-width: 700px) {
  .exp-hero { min-height: 70vh; padding: 90px 20px 48px !important; }
  .exp-cta { flex-direction: column; }
  .exp-cta .btn-primary, .exp-cta .btn-ghost { text-align: center; }
}

/* ── HERO IMAGE BACKGROUNDS ── */
.exp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.35;
  transition: opacity 0.5s;
}

.exp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,8,0.3) 0%,
    rgba(9,9,8,0.1) 40%,
    rgba(9,9,8,0.5) 75%,
    rgba(9,9,8,0.95) 100%
  );
}

.exp-hero > * { position: relative; z-index: 1; }

/* When real photo lands, swap to it — just change the src */
.exp-hero { position: relative; overflow: hidden; }
