/* =========================
   GT Sim Racing — Light/Red Theme (v24)
   ========================= */

/* Root palette */
:root{
  --bg:#ffffff;
  --bg-2:#f7f7f9;
  --text:#111114;
  --muted:#5b5e66;
  --line:#e6e8ec;
  --red:#cc0000;
  --red-2:#e31b23;
  --shadow:0 12px 30px rgba(17,17,20,.08);
  --hero-pos:center 25%;
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color:var(--text); background:var(--bg); line-height:1.6;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block }
h1,h2,h3,h4{ margin:0 0 .5rem; line-height:1.15 }
.section-title{ font-weight:800; letter-spacing:.2px }
.center{text-align:center}

/* ===== Header / Nav ===== */
.site-header{
  position:sticky; top:0; z-index:50; background:#fff;
  border-bottom:1px solid var(--line); box-shadow:var(--shadow);
}
/* flush-left, larger logo */
.header-container{
  max-width:1200px; margin:0 auto; padding:10px 0 10px 0;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.site-logo{ display:flex; align-items:center; margin-right:auto; padding-left:0; }
.site-logo .logo{
  height:auto !important; width:auto !important; object-fit:contain;
  max-height:80px !important; display:block; /* desktop size */
}
@media (max-width:640px){
  .site-logo .logo{ max-height:60px !important; }
}

.main-nav{ display:flex; align-items:center; gap:14px; padding-right:16px; }
.main-nav .nav-links a{
  color:var(--text); text-decoration:none; font-weight:600;
  padding:8px 10px; border-radius:10px;
}
.main-nav .nav-links a:hover{ background:var(--bg-2) }
.nav-cta{ margin-left:6px }

/* ===== Book Now panel ===== */
#bookNowPanel{ display:none; background:linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.06)); padding:24px 0 }
.bn-card{ background:#fff; border:1px solid var(--line); border-radius:16px; max-width:900px; margin:0 auto; box-shadow:var(--shadow) }
.bn-wrap{ padding:12px 16px; border-bottom:1px solid var(--line) }
.bn-top{ height:6px; background:var(--red); border-radius:8px }
.bn-list{ list-style:none; margin:0; padding:10px }
.bn-item{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px; border-radius:12px }
.bn-item + .bn-item{ border-top:1px dashed var(--line) }
.bn-title{ font-weight:800 }
.bn-sub{ color:var(--muted); font-size:.95rem }
.bn-btn-outline{
  display:inline-flex; align-items:center; gap:.5rem; padding:.55rem .9rem;
  border-radius:999px; border:1px solid var(--red); color:var(--red); text-decoration:none; font-weight:700
}
.bn-btn-outline:hover{ background:var(--red); color:#fff }

/* ===== Buttons ===== */
.btn{ border:0; cursor:pointer; font-weight:800; letter-spacing:.2px; border-radius:999px;
      padding:.7rem 1.1rem; display:inline-flex; align-items:center; justify-content:center; text-decoration:none }
.btn-lg{ padding:.9rem 1.3rem; font-size:1.05rem }
.btn-red{ background:var(--red); color:#fff }
.btn-red:hover{ background:var(--red-2) }
.btn-outline-red{ background:#fff; color:var(--red); border:1.5px solid var(--red) }
.btn-outline-red:hover{ background:var(--red); color:#fff }

/* ===== Hero ===== */
.hero{
  position:relative; overflow:hidden; min-height:58vh; display:grid; place-items:center;
  background-size:cover; background-position:var(--hero-pos); background-repeat:no-repeat;
}
.hero--light{ color:#111 }
.hero--flat{ min-height:46vh }
.hero:before{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55)); z-index:0 }
.hero .hero-tint{ position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.8)); z-index:0 }
.hero .hero-tint--light{ background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.9)) }
.hero-inner{ position:relative; z-index:1; padding:64px 0; text-align:center }
.hero-title{ font-size:clamp(2rem, 4vw, 3.25rem); font-weight:900 }
.hero-subtitle{ color:#2a2f36; margin:8px auto 18px; max-width:720px }
.hero-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap }

/* ===== Containers & grids ===== */
.container{ width:100%; max-width:1200px; margin:0 auto; padding:0 16px }
.features{ padding:56px 0 }
.features-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px }
@media (max-width:980px){ .features-grid{ grid-template-columns:1fr } }
.feature-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:16px; box-shadow:var(--shadow) }

/* Media frames */
.feature-media,
.location-media,
.tier-media,
.events-media {
  border-radius:12px; overflow:hidden; border:1px solid var(--line); margin-bottom:10px;
}
.ratio-16x9{ aspect-ratio:16/9 }

/* Default: fill the frame (no black bars) */
.feature-media img,
.location-media img,
.events-media img{
  width:100%; height:100%; object-fit:cover; object-position:center;
}
/* Membership cards: show logo/photo less zoomed (no over-crop) */
.tier-media img{
  width:100%; height:100%; object-fit:contain; object-position:center; background:transparent;
}

.card-cta{ margin-top:10px; display:flex; justify-content:flex-end }

/* ===== Newsletter ===== */
.newsletter-section{ position:relative; background-size:cover; background-position:center; padding:64px 0; color:#111 }
.newsletter-tint{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.92)) }
.newsletter-section .container{ position:relative; z-index:1 }
.newsletter-sub{ color:#2a2f36; margin:-4px 0 14px }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap }
.newsletter-form input{ flex:1 1 240px; border:1px solid var(--line); border-radius:999px; padding:.7rem 1rem; font:inherit }
.newsletter-msg{ margin-top:8px; color:#2a2f36 }

/* ===== Events ===== */
.events-section{ background:var(--bg-2); padding:56px 0 }
.events-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:20px; align-items:center }
@media (max-width:980px){ .events-grid{ grid-template-columns:1fr } }
.events-content .events-callout{
  margin-top:12px; background:#fff; border:1px solid var(--line);
  border-left:4px solid var(--red); border-radius:10px; padding:10px 12px; box-shadow:var(--shadow)
}
.events-content a{ color:var(--red); font-weight:700 }

/* ===== Location ===== */
.location-section{ padding:56px 0 }
.location-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:18px; align-items:start }
@media (max-width:980px){ .location-grid{ grid-template-columns:1fr } }

/* ===== FAQ ===== */
.faq-section{ background:var(--bg-2); padding:56px 0 }
.faq-head{ text-align:center; margin-bottom:18px }
.faq-kicker{ color:var(--red); font-weight:900; letter-spacing:.6px }
.faq-title{ font-weight:900 }
.faq-list{ max-width:900px; margin:0 auto }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:14px; margin:10px 0; overflow:hidden; box-shadow:var(--shadow) }
.faq-q{
  width:100%; text-align:left; padding:14px 16px; display:flex; align-items:center; justify-content:space-between;
  font-weight:800; border:0; background:#fff; cursor:pointer
}
.faq-icon{ color:var(--red); font-weight:900 }
.faq-a{ display:none; border-top:1px solid var(--line); background:#fff }
.faq-a.open{ display:block }
.faq-a-inner{ padding:14px 16px; color:#2a2f36 }

/* ===== Membership page tweaks ===== */
.membership-hero{ color:#fff; }
.membership-hero .hero-tint{
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65)) !important;
}
.membership-hero h1,
.membership-hero .subtitle,
.membership-hero .intro{ color:#fff !important; }

.membership-tiers{ padding:48px 0 }
.tiers-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px }
@media (max-width:980px){ .tiers-grid{ grid-template-columns:1fr } }
.tier-card{ background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); padding:14px; display:flex; flex-direction:column }
.tier-body h3{ margin:.25rem 0 .35rem }
.tier-body .price{ font-weight:900; font-size:1.5rem; margin-bottom:.5rem }
.tier-body .price span{ color:var(--muted); margin-left:4px; font-weight:700 }
.features{ list-style:disc inside }

/* ===== Footer ===== */
.site-footer{ background:#fff; border-top:1px solid var(--line) }
.footer-grid{ max-width:1200px; margin:0 auto; padding:20px 16px; display:grid; grid-template-columns:1fr 1fr; gap:18px }
.copy{ text-align:center; color:#6b7078 }

/* ===== Reveal animation ===== */
.reveal{ opacity:0; transform:translateY(10px); transition:opacity .5s ease, transform .5s ease }
.reveal.in{ opacity:1; transform:none }

/* ===== Utilities ===== */
ul{ padding-left:1.1rem }
.section-title + p{ color:#2a2f36 }

/* Responsive polish */
@media (max-width:640px){
  .btn-lg{ width:100% }
}
/* === Hotfix: flush-left logo (v25) === */

/* Make the header container full-bleed so the logo can sit in the true corner */
.site-header { padding:0; }
.site-header .header-container{
  max-width:100vw !important;   /* remove 1200px cap for the bar itself */
  margin:0 !important;
  padding-left:0 !important;     /* kill left gutter */
  padding-right:16px;
  gap:0;
}

/* Ensure the logo anchor hugs the edge and is big */
.site-logo{
  margin:0 !important;
  padding-left:0 !important;
  display:flex; align-items:center;
}
.site-logo .logo{
  display:block;
  height:auto !important;
  width:auto !important;
  object-fit:contain;
  max-height:88px !important;    /* bump size; tweak if you want larger */
}
@media (max-width:640px){
  .site-logo .logo{ max-height:60px !important; }
}

/* Keep nav aligned to the right cleanly even with full-bleed header */
.main-nav{ margin-left:auto; padding-right:0; }
/* === Parties & Events page (v26) === */
.groups-hero{
  position:relative; min-height:46vh; background-size:cover; background-position:center 35%; display:grid; place-items:center; color:#fff;
}
.groups-hero__tint{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7)); }
.groups-hero__inner{ position:relative; z-index:1; text-align:center; padding:56px 16px; }
.groups-hero__inner h1{ font-size:clamp(1.9rem,4vw,3rem); font-weight:900; margin-bottom:.35rem; }
.groups-hero__inner p{ max-width:880px; margin:0 auto 12px; }
.groups-hero__cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:8px; }

.packages{ padding:48px 0; }
.packages-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:14px; }
@media (max-width:980px){ .packages-grid{ grid-template-columns:1fr; } }
.package-card{ background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); padding:16px; }
.package-card h3{ margin-bottom:.25rem; }
.package-card ul{ margin:.25rem 0 0; padding-left:1.1rem; }
.pkg-cta{ display:flex; justify-content:flex-end; margin-top:10px; }
.packages-note{ margin-top:14px; background:#fff; border:1px solid var(--line); border-left:4px solid var(--red); border-radius:10px; padding:10px 12px; box-shadow:var(--shadow) }
.muted{ color:var(--muted); }

.inquiry-section{ background:var(--bg-2); padding:56px 0; }
.inquiry-form{ max-width:980px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); padding:16px; }
.inquiry-form .row{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
@media (max-width:980px){ .inquiry-form .row{ grid-template-columns:1fr; } }
.inquiry-form label{ display:flex; flex-direction:column; gap:6px; font-weight:700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea{
  border:1px solid var(--line); border-radius:10px; padding:.6rem .7rem; font:inherit;
}
.inquiry-form label.full{ display:block; margin-top:12px; }
.form-actions{ display:flex; gap:10px; justify-content:flex-end; margin-top:12px; flex-wrap:wrap; }
/* === Hero photo tuning (v27) === */
/* Both pages use a CSS variable --hero-pos so we can re-aim the focal point at each breakpoint. */

.membership-hero,
.groups-hero{
  background-size: cover;
  background-position: var(--hero-pos, center 40%); /* default focal point */
}

/* Desktop: keep horizon a bit lower */
@media (min-width: 1200px){
  .membership-hero, .groups-hero{ --hero-pos: center 35%; }
}

/* Tablet: raise focal point to keep subjects in view as height shrinks */
@media (max-width: 1199px){
  .membership-hero, .groups-hero{ --hero-pos: center 42%; }
}

/* Large phones: a bit higher again */
@media (max-width: 900px){
  .membership-hero, .groups-hero{
    min-height: 40vh;
    --hero-pos: center 48%;
  }
}

/* Small phones: ensure headline area has room and subject stays centered */
@media (max-width: 640px){
  .membership-hero, .groups-hero{
    min-height: 36vh;
    --hero-pos: center 55%;
  }
}

/* Keep membership text readable on all photos */
.membership-hero .hero-tint{
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.68)) !important;
}
/* === Header: black theme (v28) === */

.site-header {
  background: #000;           /* black background */
  border-bottom: 1px solid #111;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo .logo {
  max-height: 84px !important;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav .nav-links a {
  color: #fff;               /* white nav text */
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav .nav-links a:hover {
  color: #ff2b2b;            /* bright red on hover */
}

.btn-red.nav-cta {
  background: #ff2b2b;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}

.btn-red.nav-cta:hover {
  background: #ff4545;
}

/* Make sure mobile keeps the same contrast */
@media (max-width: 640px) {
  .site-header {
    padding: 8px 0;
  }
  .site-logo .logo {
    max-height: 60px !important;
  }
}
/* === Hero headline matches subtitle color (v30) === */
.hero--light{
  --hero-text-color:#2a2f36; /* current subtitle color */
}

.hero--light .hero-title,
.hero--light .hero-subtitle{
  color: var(--hero-text-color) !important;
}
/* === Hero gradient tuning: darker, less white at bottom (v31) === */
/* Global defaults for all heroes */
.hero{
  /* transparent at top -> darker at bottom */
  --hero-tint-top: rgba(0,0,0,.12);
  --hero-tint-mid: rgba(0,0,0,.35);
  --hero-tint-bottom: rgba(0,0,0,.62);
}

/* Replace the old white-ish wash with a darker neutral overlay */
.hero:before{
  background: linear-gradient(
    180deg,
    var(--hero-tint-top) 0%,
    var(--hero-tint-mid) 55%,
    var(--hero-tint-bottom) 100%
  ) !important;
}

/* Remove extra white from the additional tint layer and make it reinforce darkness slightly */
.hero .hero-tint{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.20) 60%,
    rgba(0,0,0,.35) 100%
  ) !important;
}

/* Membership & Parties heroes: a touch stronger for busy photos */
.membership-hero,
.groups-hero{
  --hero-tint-top: rgba(0,0,0,.16);
  --hero-tint-mid: rgba(0,0,0,.42);
  --hero-tint-bottom: rgba(0,0,0,.68);
}
/* === Hero gradient lighter tuning (v32) === */
/* Softer overlay so image shows through more */
.hero{
  --hero-tint-top: rgba(0,0,0,.08);
  --hero-tint-mid: rgba(0,0,0,.22);
  --hero-tint-bottom: rgba(0,0,0,.40);
}

.hero:before{
  background: linear-gradient(
    180deg,
    var(--hero-tint-top) 0%,
    var(--hero-tint-mid) 55%,
    var(--hero-tint-bottom) 100%
  ) !important;
}

.hero .hero-tint{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.12) 60%,
    rgba(0,0,0,.25) 100%
  ) !important;
}

/* Membership & Parties heroes: slightly more tint for text legibility */
.membership-hero,
.groups-hero{
  --hero-tint-top: rgba(0,0,0,.10);
  --hero-tint-mid: rgba(0,0,0,.26);
  --hero-tint-bottom: rgba(0,0,0,.48);
}
/* === v33: hero text white, card CTAs hidden, tweaks === */

/* Make hero headline + subtitle white */
.hero--light .hero-title,
.hero--light .hero-subtitle{
  color:#fff !important;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}

/* Remove the section title "Why GT Sim Racing" if present */
.features .section-title{ display:none !important; }

/* Hide the Book Now buttons under feature cards */
.feature-item .card-cta{ display:none !important; }

/* (Optional) tighten grid spacing now that CTAs are gone */
.features-grid{ gap:16px; }
/* === v34: Center newsletter + shorter email field === */
.newsletter-section .container{
  text-align: center;
}

.newsletter-form{
  justify-content: center;           /* center the form row */
}

.newsletter-form input{
  flex: 0 0 auto;                    /* stop stretching */
  width: 320px;                      /* shorter bar */
  max-width: 90vw;                   /* safe on tiny screens */
}

#newsletter-msg{
  text-align: center;                /* center the status message too */
}
/* Center single action row on Parties form (v35) */
.form-actions.one-action{
  justify-content: center;
}
/* === v36: tighten spacing on Home (cards + newsletter) === */

/* Pull the features/cards section closer to the hero (only when a .features
   section directly follows the hero — true on Home, not on other pages) */
.hero.hero--light + .features{
  margin-top: -8px;          /* nudge upward */
}

/* Slightly reduce inner spacing in the hero on Home without affecting others */
.hero.hero--light .hero-inner{
  padding-bottom: 24px;
}

/* Compact the card grid a touch */
.features .features-grid{
  gap: 14px;
}

/* Bring the newsletter section up and make it a bit tighter */
.newsletter-section{
  margin-top: 16px;          /* closer to cards */
  padding-top: 32px;         /* was larger */
  padding-bottom: 32px;
}

/* Centering + input width (kept from earlier tweak, safe to repeat) */
.newsletter-section .container{ text-align:center; }
.newsletter-form{ justify-content:center; }
.newsletter-form input{
  flex:0 0 auto;
  width:320px;
  max-width:90vw;
}
#newsletter-msg{ text-align:center; }
/* === v37: Home hero softer white gradient under text === */
/* Only affects the homepage hero (.hero--light). Other pages (Memberships/Parties) keep their darker overlay. */

.hero.hero--light{
  position: relative;
}

/* Create a subtle white gradient from transparent (top) to light white (bottom) */
.hero.hero--light:before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.20) 55%,
    rgba(255,255,255,0.35) 100%
  ) !important;
}

/* Keep the secondary tint minimal so the net effect stays “less intense” */
.hero.hero--light .hero-tint{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.12) 60%,
    rgba(255,255,255,0.22) 100%
  ) !important;
}
/* === v38: Home full-bleed (index only) === */
.home-fullbleed .container{
  max-width: 100vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-fullbleed .features,
.home-fullbleed .newsletter-section{
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* inner wrappers that sometimes add gutters */
.home-fullbleed .hero-inner,
.home-fullbleed .newsletter-section > .container{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* optional: remove main’s default padding if any */
.home-fullbleed :where(main){
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* === v38: bigger, wider header logo === */
.site-header .header-container{
  min-height: 110px;            /* gives the logo room vertically */
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-logo .logo{
  max-height: 110px !important; /* was ~84px; increase for taller logo */
  width: clamp(260px, 28vw, 520px);  /* make it stretch wider but keep ratio */
  height: auto !important;
  object-fit: contain;          /* no distortion */
}

/* Mobile: keep it big but reasonable */
@media (max-width: 640px){
  .site-logo .logo{
    max-height: 72px !important;
    width: auto;                /* let height control size on phones */
  }
}
/* === v42: Social links in footer === */
.social-links{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  transition: color .2s ease, transform .1s ease;
}

.social-link:hover{
  color: var(--red);
  transform: translateY(-1px);
}

.social-icon{
  display: inline-flex;
  line-height: 0;
}
/* === v43: Footer 3-column layout + social link style === */
.footer-grid{
  max-width:1200px;
  margin:0 auto;
  padding:20px 16px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;   /* was 1fr 1fr */
  gap:18px;
}
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;        /* stack on small screens */
  }
}

.social-links{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  color: var(--text);
  transition: color .2s ease, transform .1s ease;
}

.social-link:hover{
  color: var(--red);
  transform: translateY(-1px);
}

.social-icon{
  display: inline-flex;
  line-height: 0;
}
/* --- Header layout baseline (desktop) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;           /* match your current header color */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hide hamburger by default (desktop) */
.nav-toggle {
  display: none;
}

/* Mobile nav hidden by default */
.mobile-nav {
  display: none;
}

/* --- Hamburger button --- */
.nav-toggle {
  border: none;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  margin: 4px 0;
}

/* --- Mobile styles --- */
@media (max-width: 768px) {
  /* Hide desktop nav on mobile */
  .main-nav {
    display: none;
  }

  /* Show hamburger */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Make header a stacking container for the dropdown */
  .site-header {
    position: sticky;
    top: 0;
  }

  /* Mobile dropdown */
  .mobile-nav {
    position: relative;
    background: #05014a;
    padding: 0.5rem 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav a,
  .mobile-nav button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.35rem 0;
    color: #ffffff;
    text-decoration: none;
    border: none;
    background: transparent;
    font-size: 0.95rem;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus {
    text-decoration: underline;
  }

  .mobile-nav .mobile-book {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }
}
/* === v45: Membership page full-bleed (no side padding) === */

.membership-fullbleed .container{
  max-width: 100vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove section padding/gutters so it touches edges */
.membership-fullbleed .membership-hero,
.membership-fullbleed .membership-tiers,
.membership-fullbleed .location-section,
.membership-fullbleed .events-section{
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* === v48: Membership cards — no gaps on mobile only === */
@media (max-width: 768px){
  /* Remove section padding on mobile */
  .membership-fullbleed .membership-tiers{
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Remove gaps between the cards */
  .membership-fullbleed .tiers-grid{
    gap: 0 !important;
  }

  /* Remove outer spacing around each card (keep inner padding) */
  .membership-fullbleed .tier-card{
    margin: 0 !important;
    border-radius: 0;     /* so they butt up cleanly */
    box-shadow: none;     /* optional: avoids visible lines between cards */
  }
}
/* === v49: Membership cards – true edge-to-edge on mobile === */
@media (max-width: 768px){

  /* Kill horizontal padding/margin on the membership sections */
  .membership-hero > .container,
  .membership-tiers,
  .membership-tiers.container,
  .membership-tiers > .container{
    max-width: 100vw;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Remove gaps and side padding around the grid itself */
  .membership-tiers .tiers-grid{
    gap: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Cards butt up against each other and screen edges */
  .membership-tiers .tier-card{
    margin: 0 !important;
    border-radius: 0;     /* so they meet cleanly */
    box-shadow: none;     /* remove “gap” created by shadows */
  }
}
/* === v50: Membership page – no padding at all on mobile === */
@media (max-width: 768px){

  /* Make the whole membership block truly full-bleed */
  .membership-fullbleed{
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw;
  }

  .membership-fullbleed .membership-tiers{
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw;
  }

  .membership-fullbleed .tiers-grid{
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    width: 100vw;
  }

  /* Remove ALL inner spacing on the cards themselves */
  .membership-fullbleed .tier-card{
    margin: 0 !important;
    padding: 0 !important;      /* kills inner white space */
    border-radius: 0 !important;
    box-shadow: none !important;
    border-width: 0 !important; /* no inner border gap */
  }

  /* Optional: tighten inner text spacing a bit if needed */
  .membership-fullbleed .tier-body,
  .membership-fullbleed .tier-cta{
    padding: 0 !important;
    margin: 0 !important;
  }
}
/* === v51: Membership card logos pinned to top === */
/* Only affects the logo/image inside the membership cards. */
.membership-tiers .tier-media img{
  object-position: top center !important;
}
/* === v52: Shorter logo area on membership cards === */
.membership-tiers .tier-media.ratio-16x9{
  aspect-ratio: 3 / 1;          /* was 16 / 9 – much shorter banner */
  margin-bottom: 6px;           /* slightly tighter gap under the logo */
}

/* Keep logo pinned to the top of that shorter frame */
.membership-tiers .tier-media img{
  object-position: top center !important;
}
/* === Phone numbers: clickable only on mobile (v52+) === */

/* Default (desktop/tablet): show plain text, hide tel links */
.phone-text{
  display: inline;
}
.phone-link{
  display: none;
}

/* On small screens, swap: show tel links, hide plain text */
@media (max-width: 768px){
  .phone-text{
    display: none;
  }
  .phone-link{
    display: inline;
  }
}
/* === Header logo sizing === */
.site-header .logo {
  height: 90px;          /* increase this to taste (e.g. 80px, 90px) */
  width: auto;
}

/* Keep it reasonable on smaller screens */
@media (max-width: 600px) {
  .site-header .logo {
    height: 60px;
  }
}
/* Mobile-only logo size */
@media (max-width: 768px) {
  .site-header .logo {
    height: 72px;       /* taller on mobile */
    width: 300px;       /* makes it look more stretched horizontally */
    object-fit: contain;/* keeps it from getting ugly/distorted */
  }

  /* Optional: give it a bit of breathing room */
  .site-header .site-logo {
    display: inline-block;
  }
}
/* === Membership page hero tweaks === */

.membership-hero .hero-tint {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );
}

.membership-hero .container {
  color: #ffffff;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem 3rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 18px;
}

.membership-hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: .75rem;
}

.membership-hero .subtitle {
  color: #ffffff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.7);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.membership-hero .intro {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  font-size: 1rem;
  max-width: 52rem;
  margin-bottom: 0;
}

/* Member booking CTA under hero */

.member-booking-cta {
  padding: 1.75rem 1rem 0;
  text-align: center;
  background: transparent;
}

.member-booking-cta .container {
  max-width: 900px;
  margin: 0 auto;
}

.member-booking-cta h2 {
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}

.btn-member-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #fff;
  background: #e50914;    /* red brand color */
  color: #fff;
  gap: .45rem;
  cursor: pointer;
}

.btn-member-book span.icon {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-member-book:hover {
  filter: brightness(1.08);
}

/* Tighten price → list spacing on all membership cards */

.membership-tiers .tier-body .price {
  margin-bottom: 0.25rem;
}

.membership-tiers .tier-body .features {
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .membership-hero .container {
    padding: 1.75rem 1.25rem 2.25rem;
    border-radius: 14px;
  }
  .membership-hero h1 {
    font-size: 2rem;
  }
  .membership-hero .subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .member-booking-cta {
    padding-top: 1.5rem;
  }
  .btn-member-book {
    width: 100%;
    max-width: 320px;
  }
}

/* === Member login modal styles === */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #101010;
  color: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.7);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.3rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.modal-body label {
  font-size: .9rem;
  font-weight: 500;
}

.modal-body input {
  width: 100%;
  padding: .55rem .65rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #181818;
  color: #fff;
  font-size: .95rem;
}

.modal-body input:focus {
  outline: none;
  border-color: #e50914;
}

.modal-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
}

.btn-secondary {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #444;
  background: #222;
  color: #eee;
  font-size: .9rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #2e2e2e;
}

.btn-primary {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: #e50914;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.modal-note {
  margin-top: .4rem;
  font-size: .8rem;
  color: #bbb;
}
.member-error-banner{
  background:#2b0505;
  color:#ffd5d5;
  padding:.75rem 1rem;
  text-align:center;
  margin:0 0 1rem 0;
  border-radius:8px;
  font-size:.95rem;
}
/* --- Top nav layout --- */
.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

/* Button-style links for dropdown triggers */
.nav-link-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link-button:focus {
  outline: 2px solid rgba(251, 113, 133, 0.9); /* optional focus ring */
  outline-offset: 2px;
}

.nav-caret {
  font-size: 0.75em;
}

/* Dropdown menu (desktop) */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 0.35rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  padding: 0.35rem 0;
  display: none;
  z-index: 20;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f3f4f6;
}

/* Show dropdown on hover / focus (desktop) */
.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
  display: block;
}

/* --- Mobile nav dropdown behavior --- */
@media (max-width: 800px) {
  /* In mobile, render dropdown items inline rather than floating */
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    display: block;
  }

  .nav-link-button {
    cursor: default;
  }

  .mobile-nav-group {
    padding: 0.4rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
  }

  .mobile-nav-label {
    display: block;
    font-weight: 600;
    padding: 0.4rem 0;
  }

  .mobile-nav-group a {
    padding-left: 0.75rem;
    display: block;
  }
}
/* --- Top nav layout --- */
.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

/* Button-style links for dropdown triggers */
.nav-link-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;          /* use same color as your normal nav links */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link-button:focus {
  outline: 2px solid rgba(251, 113, 133, 0.9); /* optional focus ring */
  outline-offset: 2px;
}

.nav-caret {
  font-size: 0.75em;
}

/* Dropdown menu (desktop + default) */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 0.35rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  padding: 0.35rem 0;
  display: none;           /* HIDDEN by default */
  z-index: 20;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  white-space: nowrap;
  color: inherit;          /* match normal nav link color */
  text-decoration: none;
}

/* Hover: keep same font color, just a subtle bg */
.nav-dropdown-menu a:hover {
  background: rgba(148, 163, 184, 0.15); /* light gray/blue */
  color: inherit;                        /* let your existing nav hover color win if set */
}

/* Show dropdown on hover / focus (pulldown behavior) */
.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
  display: block;
}

/* --- Mobile tweaks --- */
@media (max-width: 800px) {
  /* NO forced display:block, so subsections stay hidden until hover/focus
     and use your existing colors. */

  .mobile-nav-group {
    padding: 0.4rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
  }

  .mobile-nav-label {
    display: block;
    font-weight: 600;
    padding: 0.4rem 0;
  }

  .mobile-nav-group a {
    padding-left: 0.75rem;
    display: block;
  }
}
/* === v55: Nav dropdown colors match FAQ === */

/* All top-level nav labels (FAQ, Services, Real Estate Services) */
.main-nav .nav-links .nav-link {
  color: #fff;                 /* same as FAQ */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

/* Hover state for top-level nav items */
.main-nav .nav-links .nav-link:hover {
  color: #ff2b2b;              /* same red hover you use now */
}

/* Dropdown panel style */
.nav-dropdown-menu {
  background: #000;            /* match black header */
  border-radius: 0.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
}

/* Links inside dropdown menu */
.nav-dropdown-menu a {
  color: #fff;                 /* white like FAQ */
  text-decoration: none;
}

/* Hover for dropdown links */
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ff2b2b;              /* same red hover color */
}
/* v56: remove gap between membership price and first bullet */
.membership-tiers .tier-body .price {
  margin-bottom: 0;       /* no space under the price */
  line-height: 1.2;       /* slightly tighter text if needed */
}

.membership-tiers .tier-body .features {
  margin-top: 0;          /* no space above the list */
  padding-top: 0;         /* just in case anything added padding */
}
/* === v61: Mobile – logo fills from left edge up to hamburger === */
@media (max-width: 768px) {

  .site-header {
    padding: 0 !important;
  }

  .site-header > .header-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0.75rem 0 0 !important; /* no left padding, small right padding */
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  /* Logo area takes the row, starting at the left edge */
  .site-header > .header-container .site-logo {
    flex: 1 1 auto !important;
    margin: 0 !important;
  }

  /* Image stretches across that space */
  .site-header > .header-container .site-logo .logo {
    display: block !important;
    width: 100% !important;       /* fill from left up to hamburger */
    height: auto !important;
    max-height: 90px !important;  /* adjust taller/shorter if you want */
    object-fit: contain !important;
  }

  /* Hamburger pushed to the far right, not moved vertically */
  .site-header > .header-container .nav-toggle {
    position: static !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;   /* pushes it to the right edge */
  }
}
/* === v62: Mobile – logo slightly bigger & closer to edges === */
@media (max-width: 768px) {
  /* Reduce right padding so logo reaches closer to the hamburger */
  .site-header > .header-container {
    padding-right: 0.25rem !important;  /* was 0.75rem */
  }

  /* Make the logo a bit taller (and thus larger overall) */
  .site-header > .header-container .site-logo .logo {
    max-height: 110px !important;  /* bump this up/down to taste */
  }
}
/* === Refined member login modal (black + red theme) === */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.70);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #050509;
  color: #f9fafb;
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.4rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.8);
  border: 1px solid rgba(148,163,184,0.25);
  position: relative;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #e50914, #ff4b4b, #1f2937);
  opacity: 0.28;
  pointer-events: none;
}

/* inner content sits above the glow */
.modal > * {
  position: relative;
  z-index: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.1rem;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.modal-tagline {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: 22rem;
}

.modal-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.1rem 0.25rem;
  border-radius: 999px;
}

.modal-close:hover {
  color: #f9fafb;
  background: rgba(148,163,184,0.15);
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.modal-field-group label {
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.field-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9ca3af;
}

.modal-body input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #27272f;
  background: #0b0b12;
  color: #f9fafb;
  font-size: .95rem;
}

.modal-body input::placeholder {
  color: #6b7280;
}

.modal-body input:focus {
  outline: none;
  border-color: #e50914;
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.6);
}

/* forgot password row */
.modal-inline-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-note {
  margin: 0;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* divider line */
.modal-divider {
  border: 0;
  border-top: 1px solid rgba(55,65,81,0.7);
  margin: 0.9rem 0 0.8rem;
}

/* two-column membership vs non-member area */
.modal-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.modal-option {
  background: radial-gradient(circle at top left, rgba(229,9,20,0.16), transparent 55%);
  border-radius: 12px;
  padding: 0.6rem 0.7rem 0.7rem;
  border: 1px solid rgba(55,65,81,0.9);
}

.modal-option h4 {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.modal-option p {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Modal option links – red theme */
.modal-option-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #e50914;
  background: rgba(229, 9, 20, 0.15);
  color: #ffb3b3 !important;     /* light red text */
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .1s ease;
}

.modal-option-link:hover {
  background: #e50914;
  border-color: #ffdddd;
  color: #ffffff !important;     /* bright white */
  transform: translateY(-1px);
}


/* footer buttons */
.modal-footer {
  margin-top: 1.1rem;
  display: flex;
  justify-content: flex-end;
  gap: .6rem;
}

.btn-secondary {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #374151;
  background: #111827;
  color: #e5e7eb;
  font-size: .9rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #1f2937;
}

.btn-secondary--ghost {
  background: transparent;
  border-color: rgba(55,65,81,0.9);
}

.btn-secondary--ghost:hover {
  background: #111827;
}

.btn-primary {
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e50914, #ff3636);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

/* small screens */
@media (max-width: 480px) {
  .modal {
    padding: 1.4rem 1.2rem 1.3rem;
    max-width: 92vw;
  }

  .modal-title {
    font-size: 1.15rem;
  }

  .modal-options-grid {
    grid-template-columns: 1fr;
  }
}
/* === v57: Membership hero – title at top, copy card at bottom === */

/* Make the hero a positioned container */
.membership-hero{
  position: relative;
  min-height: 52vh;
}

/* Inner shell for alignment (top title) */
.membership-hero-shell{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem 5rem;   /* extra bottom space reserved for bottom card */
}

/* Top: title pinned toward top of image */
.membership-hero-top{
  text-align: center;
}

.membership-hero-top h1{
  margin: 0;
}

/* Bottom overlay card anchored to hero bottom */
.membership-hero-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.membership-hero-bottom-inner{
  max-width: 960px;
  margin: 0 auto 1.2rem;          /* slight lift above absolute bottom */
  padding: 1rem 1.4rem 1.2rem;
  background: rgba(0,0,0,0.78);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.65);
}

.membership-hero-bottom-inner .subtitle{
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.membership-hero-bottom-inner .intro{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.membership-hero-bottom-inner .hero-cta{
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-start;
}

/* Tight price/list spacing (moved from template into global CSS) */
.membership-tiers .tier-body .price{
  margin-bottom: 0;
  line-height: 1.2;
}
.membership-tiers .tier-body .features{
  margin-top: 0;
  padding-top: 0;
}

/* Responsive tweaks */
@media (max-width: 768px){
  .membership-hero-shell{
    padding: 1.25rem 1.25rem 5.25rem;
  }
  .membership-hero-bottom-inner{
    margin: 0 0.9rem 0.9rem;
    padding: 0.9rem 1rem 1.05rem;
  }
  .membership-hero-bottom-inner .hero-cta{
    justify-content: center;
  }
}
/* v57 override: remove old membership hero black box */
.membership-hero .container {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
/* v57: Modal option buttons – black with white text */
.modal-option-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #000000;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .1s ease;
}

.modal-option-link:hover {
  background: #111827;
  border-color: #4b5563;
  color: #ffffff !important;
  transform: translateY(-1px);
}
/* v58 — Membership Hero Layout Fix */

/* Main hero container */
.membership-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Title spacing at top */
.membership-hero-top{
  text-align: center;
  padding-top: 0.2rem;
}

/* Subtitle (the ONLY line inside the picture) */
.membership-hero-bottom-inner .subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

/* Move the black box DOWN (overhang) */
.membership-hero-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8.5rem;         /* Pushes the whole black box BELOW the picture */
  width: 100%;
  max-width: 960px;
}

/* Style of the black box */
.membership-hero-bottom-inner {
  background: rgba(0,0,0,0.50);
  padding: 1.3rem 1.4rem 1.6rem;
  border-radius: 18px;
  text-align: center;       /* Center everything inside */
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* The long paragraph under the picture */
.membership-hero-bottom-inner .intro {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
}

/* CTA centered */
.membership-hero-bottom-inner .hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .membership-hero-top {
    padding-top: 1.3rem;
  }

  .membership-hero-bottom {
    bottom: -8.5rem;   /* more overhang on mobile */
    width: calc(100% - 1.5rem);
  }

  .membership-hero-bottom-inner {
    padding: 1rem;
  }
}
/* v59: Give space under the overhanging hero box */
.membership-tiers {
  margin-top: 5rem;    /* matches/clears the -4rem overhang above */
}

/* Slightly less on mobile so it doesn’t feel too gappy */
@media (max-width: 768px){
  .membership-tiers {
    margin-top: 4rem;
  }
}
/* v61: Hide tier logos on mobile (membership page) */
@media (max-width: 768px){
  .membership-tiers .tier-media{
    display: none;       /* hide the logo/image block */
    margin: 0;           /* remove extra space */
    padding: 0;
  }
}
/* v62: Mobile-only hero overhang + spacing fix */
@media (max-width: 768px){

  /* Drop the black box further down on mobile */
  .membership-hero-bottom{
    bottom: -15rem;           /* more overhang than desktop */
  }

  /* Push the tier cards down so they clear the box */
  .membership-tiers{
    margin-top: 20rem;        /* increase from previous mobile value */
  }
}
/* v63: Extra mobile spacing below hero box */
@media (max-width: 768px){

  /* keep your overhang from before */
  .membership-hero-bottom{
    bottom: -15rem;              /* or whatever value you liked */
  }

  /* push the Gold/Silver/Bronze cards further down */
  .membership-tiers{
    margin-top: 9.5rem;         /* was 7rem – gives more clearance */
  }
}
/* v64: Mobile spacing fix – push membership cards down under hero box */
@media (max-width: 768px){

  /* earlier rules use .membership-fullbleed .membership-tiers with !important,
     so we match that selector and override it here */
  .membership-fullbleed .membership-tiers{
    margin-top: 16rem !important;   /* increase if you still want more space */
    padding-top: 0 !important;
  }
}
/* v65: Mobile nav section headings visible on dark background */
@media (max-width: 768px){
  .mobile-section-title{
    color: #ffffff;                     /* make headings white */
    font-weight: 700;
    padding: 0.35rem 0 0.15rem;
    border-top: 1px solid rgba(255,255,255,0.25);  /* subtle divider */
    text-transform: uppercase;          /* optional: makes them feel like labels */
    font-size: 0.9rem;
  }
}
/* === FAQ page – hero title at top + overlapping card (v66) === */

/* === FAQ page – hero title at top + overlapping card (v66b) === */

/* 1) Stop vertical centering on the FAQ hero and pin content to the top */
.hero.faq-hero-adjust{
  display: flex;              /* override grid */
  align-items: flex-start;    /* top-align content */
  justify-content: center;    /* keep it centered horizontally */
}

/* Move the "Frequently Asked Questions" heading close to the top */
.hero.faq-hero-adjust .hero-inner{
  padding-top: 14px;
  padding-bottom: 18px;
}

/* 2) Overlap the FAQ block onto the hero image */
.faq-section.faq-overlap{
  background: transparent;
  padding-top: 0;
  padding-bottom: 56px;
  margin-top: -80px;          /* this is the overhang – adjust as needed */
  position: relative;
  z-index: 2;
}

/* 3) Card wrapper for all Q/A pairs */
.faq-section.faq-overlap .faq-card{
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 16px;
  background: var(--bg-2);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* Mobile tweaks */
@media (max-width: 768px){
  .hero.faq-hero-adjust .hero-inner{
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .faq-section.faq-overlap{
    margin-top: -60px;        /* a bit less aggressive on small screens */
  }

  .faq-section.faq-overlap .faq-card{
    padding: 24px 12px 12px;
    margin: 0 10px;
  }
}
/* === FAQ page – dark overlay card (v67) === */

/* Darken the main FAQ wrapper card that sits over the hero */
.faq-section.faq-overlap .faq-card{
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 16px 16px;
  background: rgba(0, 0, 0, 0.78);   /* dark, slightly see-through */
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.75);
}

/* Inside the FAQ card, make each item blend with the dark background */
.faq-section.faq-overlap .faq-item{
  background: transparent;
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: none;                /* let the main card handle the shadow */
}

/* Question row: white text, dark bg, red + icon */
.faq-section.faq-overlap .faq-q{
  background: transparent;
  color: #ffffff;
}

.faq-section.faq-overlap .faq-icon{
  color: #e50914;                  /* brand red */
}

/* Answer area: subtle border + soft grey/white text */
.faq-section.faq-overlap .faq-a{
  background: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(148,163,184,0.5);
}

.faq-section.faq-overlap .faq-a-inner{
  color: #e5e7eb;
}

/* Optional: make links inside answers red on the dark background */
.faq-section.faq-overlap .faq-a-inner a{
  color: #ff4b4b;
  font-weight: 600;
  text-decoration: none;
}

.faq-section.faq-overlap .faq-a-inner a:hover{
  text-decoration: underline;
}
/* === Parties hero super button (v68) === */
.groups-hero__cta .groups-hero__superbtn{
  padding: 0.95rem 2.4rem;       /* bigger “super” feel */
  font-size: 1.02rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .03em;
}

/* Center phone line under the button */
.groups-hero__phone{
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.96rem;
  color: #f9fafb;
}

/* Make the phone line sit nicely inside the hero */
.groups-hero__phone .phone-text,
.groups-hero__phone .phone-link{
  font-weight: 600;
}

/* Mobile: full-width super button */
@media (max-width: 768px){
  .groups-hero__cta .groups-hero__superbtn{
    width: 100%;
    max-width: 340px;
  }

  .groups-hero__cta{
    justify-content: center;
  }
}
/* === Parties page: top red bar (phone + quote) === */
.party-topbar{
  background:#e50914;                  /* red strip like homepage */
}

.party-topbar-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.party-topbar-item{
  padding:0.75rem 1rem;
  text-align:center;
  color:#ffffff;
  font-weight:800;
  letter-spacing:.02em;
}

/* right half is a link */
.party-topbar-quote{
  text-decoration:none;
  border-left:1px solid rgba(255,255,255,0.35);
}

.party-topbar-quote:hover{
  background:#ff3636;
}

/* optional: stack on small screens so they don't get cramped */
@media (max-width: 640px){
  .party-topbar-grid{
    grid-template-columns:1fr;
  }
}
/* === Parties hero – title at top + overhanging block (v69) === */

.groups-hero{
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.groups-hero-shell{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 5rem;  /* extra bottom space for overhang */
  z-index: 1;
}

.groups-hero-top{
  text-align: center;
  padding-top: 0.2rem;
}

.groups-hero-top h1{
  margin: 0;
}

/* Overhanging block */
.groups-hero-bottom{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.5rem;              /* pushes block below the picture edge */
  width: 100%;
  max-width: 960px;
}

.groups-hero-bottom-inner{
  background: rgba(0,0,0,0.55);
  padding: 1.1rem 1.4rem 1.4rem;
  border-radius: 18px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.groups-hero-bottom-inner p{
  margin: 0 0 0.75rem;
}

/* Make the red bar sit nicely under the paragraph */
.groups-hero-bottom-inner .party-topbar{
  margin-top: 0.4rem;
}

/* Give the section below room so it doesn't overlap */
@media (min-width: 769px){
  .packages{
    margin-top: 4.5rem;
  }
}

@media (max-width: 768px){
  .groups-hero-shell{
    padding: 1.2rem 1.25rem 6.5rem;
  }

  .groups-hero-bottom{
    bottom: -6.5rem;
    width: calc(100% - 1.5rem);
  }

  .packages{
    margin-top: 6.5rem;
  }
}
/* === Parties hero – lower the overhang box (v69b override) === */

/* Desktop / tablet */
@media (min-width: 769px){
  .groups-hero-bottom{
    bottom: -17rem;        /* was around -4.5rem – push it further down */
  }
  .packages{
    margin-top: 8rem;     /* match the new overhang so it clears the box */
  }
}

/* Mobile */
@media (max-width: 768px){
  .groups-hero-bottom{
    bottom: -25rem;       /* more overhang on small screens */
  }
  .packages{
    margin-top: 11rem;    /* keep the cards out from under the box */
  }
}
/* === Parties top bar – rounded like big buttons (v69c) === */

/* Make the whole red bar a pill */
.party-topbar-grid{
  border-radius: 999px;   /* fully rounded ends */
  overflow: hidden;       /* clip inner corners so it stays pill-shaped */
}

/* Slightly more padding so it feels like a button strip */
.party-topbar-item{
  padding: 0.8rem 1.6rem;
}
/* === Parties top bar – pill-shaped like big buttons (override) === */

/* Make the whole red bar a pill and size to its contents */
.groups-hero-bottom-inner .party-topbar{
  display: inline-block;
  margin: 0 auto;          /* center inside the black box */
  border-radius: 999px;    /* fully rounded ends */
  overflow: hidden;        /* make inner corners follow the pill */
}

/* Keep the inner grid flat (no extra rounding) */
.groups-hero-bottom-inner .party-topbar-grid{
  border-radius: 0;
}

/* A bit more padding so it feels like one big button strip */
.groups-hero-bottom-inner .party-topbar-item{
  padding: 0.8rem 1.7rem;
}
/* === Parties top bar – pill like Member Booking button === */

/* Only affect the hero bar: class="party-topbar party-topbar--hero" */
.party-topbar--hero{
  background:#e50914;
  display:inline-flex;       /* shrink to content width */
  border-radius:999px;       /* fully rounded ends */
  overflow:hidden;           /* inner corners follow the pill */
  margin:0 auto;             /* center inside the black box */
}

/* Make the inside a simple flex row instead of a full-width grid */
.party-topbar--hero .party-topbar-grid{
  display:flex;
}

/* Shared styling for both halves */
.party-topbar--hero .party-topbar-item{
  padding:0.85rem 1.9rem;
  text-align:center;
  color:#ffffff;
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
}

/* Left half: phone */
.party-topbar--hero .party-topbar-phone{
  border-right:1px solid rgba(255,255,255,0.35);
}

/* Right half: link */
.party-topbar--hero .party-topbar-quote{
  text-decoration:none;
}

.party-topbar--hero .party-topbar-quote:hover{
  background:#ff3636;
}

/* Mobile: stack vertically but keep rounded container */
@media (max-width:640px){
  .party-topbar--hero{
    flex-direction:column;
    border-radius:18px;
  }

  .party-topbar--hero .party-topbar-item{
    width:100%;
  }

  .party-topbar--hero .party-topbar-phone{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.35);
  }
}
  .home-hero .hero-title{
    margin-top: 0;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    font-weight: 600;          /* lighter than the global 900 */
    letter-spacing: .04em;     /* a bit more open = less boxy */
  }



