/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #0a0a0a;
    padding: 15px 30px;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 3px #fff2);
}

nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 8px;
    border-radius: 4px;
}

nav a:hover {
    color: #ffcc00;
    background-color: #1a1a1a;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Main content */
main {
    padding: 10px 10px;
}

h1, h2, h3 {
    color: #fff;
    margin-bottom: 10px;
}

p {
    margin-top: 10px;
    color: #ddd;
}

/* Footer styles */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #333;
    font-size: 0.9em;
}
.booking-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.booking-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.booking-section p {
    margin-bottom: 25px;
    color: #aaa;
}

.booking-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.booking-form label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #ccc;
}

.booking-form input,
.booking-form select {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #222;
    color: white;
    font-size: 1rem;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: 2px solid #ffcc00;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e6b800;
}
.booking-options-section {
    text-align: center;
    padding: 60px 30px;
    background-color: #0a0a0a;
    color: white;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.booking-options-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;         /* ✅ Prevents wrapping */
    justify-content: space-between;
  }  

  .booking-card {
    flex: 1 1 30%;
    min-width: 240px;
    max-width: 300px;
    background: #111;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 8px;
    color: #fff;
    text-align: center;
  }
  
.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.booking-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #bbb;
}

.booking-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #ddd;
    font-size: 0.9rem;
}

.booking-card li {
    margin: 6px 0;
}

.btn-card {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-card:hover {
    background-color: #e6b800;
}

@media (max-width: 768px) {
    .booking-options-container {
        flex-direction: column;
        align-items: center;
    }

    .booking-card {
        width: 90%;
    }
}
.login-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 2rem;
    background-color: #111;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }
  
  .login-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
  }
  
  .login-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #222;
    color: white;
    font-size: 1rem;
  }
  
  .guest-option {
    text-align: center;
    margin-top: 2rem;
  }
  
  .guest-btn {
    background-color: #444;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .guest-btn:hover {
    background-color: #666;
  }
  
  .checkout-container {
    max-width: 600px;
    margin: 3rem auto;
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    color: white;
  }
  
  .checkout-container h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .checkout-details {
    background-color: #2b2b2b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }
  
  .checkout-details p {
    margin: 0.3rem 0;
  }
  
  form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    color: white;
  }
  
  form input {
    width: 100%;
    padding: 0.6rem;
    border-radius: 5px;
    border: none;
    background-color: #333;
    color: white;
  }
  
  .btn.full-width {
    margin-top: 2rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
  }
/* Hero fade-in */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;                 /* start invisible */
  animation: fadeInHero 2s ease forwards;  /* fade in */
}

@keyframes fadeInHero {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* dark overlay so text is readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.75));
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}
/* Features band */
.container{max-width:1200px;margin:0 auto;padding:40px 20px} /* you already have similar; ok to keep both */
.features { padding-top: 40px; padding-bottom: 20px; }
.features h2{font-size:clamp(22px,3vw,32px);margin:0 0 18px}

/* --- Features image crop (16:9) --- */
.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
@media (max-width: 900px){
  .features-grid{ grid-template-columns:1fr; }
}

.feature-card{
  background:#111;
  border:1px solid #333;
  border-radius:14px;
  overflow:hidden;
}

/* The image frame */
.feature-media{
  aspect-ratio: 16 / 9;     /* keep all cards same height */
  overflow:hidden;
  background:#000;          /* prevents flashing while loading */
  border-bottom:1px solid #333;
}

/* Make the image fill the frame perfectly */
.feature-media img{
  width:100%;
  height:100%;
  object-fit:cover;         /* crop to fill */
  display:block;
}

/* Titles and text */
.feature-card h3{ margin:14px 16px 6px; font-size:1.2rem; }
.feature-card p{ margin:0 16px 16px; color:#bbb; line-height:1.6; }
/* Parties & Events Section */
.events-section {
  background-color: #0a0a0a;  /* dark band to separate from features */
  padding: 60px 20px;
  color: #fff;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.events-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.events-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.events-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.events-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.events-content li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.events-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00; /* yellow checkmark */
}

/* Mobile */
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-media img {
    border-radius: 8px;
    margin-bottom: 20px;
  }
}
/* Location Section with image */
.location-section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
}

.location-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Image */
.location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Info */
.location-info h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #ffcc00;
}

.location-info p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.location-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-hours li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ddd;
}

/* Mobile */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-media img {
    margin-bottom: 20px;
  }
}
/* ===== FAQ (WoR style) ===== */
.faq-section { background:#0f0f0f; padding:60px 20px; }
.faq-head { text-align:center; margin-bottom:28px; }
.faq-kicker {
  color:#ff3b3b; /* WoR red vibe */
  letter-spacing:.2em;
  font-size:.9rem;
  margin-bottom:10px;
}
.faq-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing:.06em;
  text-transform: uppercase;
  color:#fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.3);
}

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  background:#111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  background:transparent;
  color:#fff;
  text-align:left;
  padding:18px 20px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  border:0;
  cursor:pointer;
}
.faq-q:hover { background:#151515; }

.faq-icon {
  font-weight:700;
  transition: transform .2s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); /* plus → X/minus */
}

/* Answer: smooth, full expansion (fixes cut-off) */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
  padding: 0 20px;         /* horizontal keeps content aligned */
}
.faq-a.open {
  max-height: 600px;       /* large enough for long answers */
  padding: 0 20px 16px 20px;
}

.faq-a-inner {
  color:#bbb; line-height:1.7; padding-top: 8px;
}
/* Scroll reveal baseline */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: nice stagger for a row of cards */
.reveal[data-delay="0"] { transition-delay: .0s; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }

/* If you want a stronger motion: */
/* .reveal { transform: translateY(30px); } */
/* Membership page */
.membership-hero {
  background:#0f0f0f;
  color:#fff;
  padding:64px 20px 28px;
  text-align:center;
}
.membership-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing:.06em;
  font-weight: 800;
  text-transform: uppercase;
}
.membership-hero .subtitle {
  margin-top:8px;
  color:#ff3b3b; /* subtle WoR-ish accent */
  letter-spacing:.1em;
}
.membership-hero .intro {
  max-width: 900px;
  margin: 14px auto 0;
  color:#ccc;
  line-height:1.7;
}

.membership-tiers { padding: 36px 20px 50px; }
.tiers-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
@media (max-width: 1000px) { .tiers-grid { grid-template-columns: 1fr; } }

.tier-card {
  background:#111;
  border:1px solid #2a2a2a;
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.tier-media { aspect-ratio: 16/9; background:#000; overflow:hidden; }
.tier-media img { width:100%; height:100%; object-fit:cover; display:block; }

.tier-body { padding:16px 18px 20px; }
.tier-body h3 { margin:6px 0 8px; font-size:1.25rem; }
.price { font-size:2rem; font-weight:800; margin-bottom:10px; }
.price span { font-size:1rem; font-weight:600; color:#bbb; margin-left:4px; }
.features { list-style:none; padding:0; margin:0; color:#bbb; line-height:1.6; }
.features li { margin: 8px 0; }
.features em { color:#888; font-style:normal; }

/* Reuse your reveal animation */
.reveal { opacity:0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.in { opacity:1; transform: none; }
.reveal[data-delay="0"] { transition-delay: 0s; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal[data-delay="5"] { transition-delay: .60s; }
.faq-head::after {
  content:"";
  display:block;
  height:3px; width:64px; margin:10px auto 0;
  background:#ff3b3b; border-radius:2px;
}
/* Membership hero with background image */
.membership-hero {
  position: relative;
  height: 70vh; /* adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.membership-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.membership-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
}

.membership-hero .subtitle { color: #ff3b3b; margin-top: 8px; letter-spacing: .1em; }
.membership-hero .intro { max-width: 900px; margin: 16px auto 0; color: #ddd; line-height: 1.7; }

/* Tier logos */
.tier-media img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* so the logo doesn’t get cropped */
  background: #000;    /* gives contrast behind logo */
  padding: 20px;       /* optional breathing room */
}
.site-footer h4 { margin-bottom: 10px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: 6px 0; }
.footer-address { color: #aaa; margin-bottom: 8px; line-height: 1.6; }
.site-footer a { color: #ccc; text-decoration: none; }
.site-footer a:hover { color: #ffcc00; }
.newsletter-section{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:80px 20px;
}
.newsletter-overlay{
  background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.75));
  padding:40px 0;
}
.newsletter-section h2{
  text-align:center;
  font-size:clamp(24px,4vw,36px);
  margin:0 0 8px;
}
.newsletter-sub{
  text-align:center;
  color:#ccc;
  margin:0 auto 20px;
  max-width:680px;
}
.newsletter-form{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
}
.newsletter-form input[type="email"]{
  min-width:260px; max-width:380px; width:100%;
  padding:12px 14px; border-radius:8px; border:1px solid #333;
  background:#111; color:#fff;
}
.newsletter-msg{ text-align:center; margin-top:12px; color:#bbb; }
/* --- FAQ Heading Centering --- */
.faq-head {
  display: block;
  text-align: center;
  margin-bottom: 28px;
}

.faq-kicker {
  color: #ff3b3b;          /* red accent */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;          /* ensures it takes its own line */
}

.faq-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.3);
  margin: 0;
}

.faq-head::after {
  content:"";
  display:block;
  height:3px;
  width:64px;
  margin:10px auto 0;   /* centers underline */
  background:#ff3b3b;
  border-radius:2px;
}
/* --- FIX parse error: close this if it still exists somewhere ---
/* centers the red line */
*/

/* --- FAQ: center heading, left-align Q&A --- */

/* 1) Make the container normal block flow again (we previously set it to flex) */
.faq-section .container {
  display: block !important;
  text-align: initial !important;
}

/* 2) Center ONLY the heading + underline */
.faq-head {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 28px !important;
}
.faq-head::after {
  content:"";
  display:block;
  height:3px;
  width:96px;
  margin:10px auto 0;        /* centered underline */
  background:#ff3b3b;
  border-radius:2px;
}

/* 3) Left-align the questions/answers block and stick it to the left edge of the container */
.faq-list {
  max-width: 900px;          /* readable width */
  margin-left: 0 !important; /* LEFT edge */
  margin-right: auto !important;
  text-align: left !important;
  justify-self: start;       /* in case parent becomes grid/flex elsewhere */
}
/* === Bigger top-left logo === */

/* 1) Define header height so hero math (if used) works */
:root { --header-h: 130px; }      /* adjust if you change logo size again */

/* 2) Grow the logo on desktop, keep it sane on mobile */
.logo {
  height: clamp(72px, 12vw, 130px);  /* min 72px, scales with viewport, max 130px */
  width: auto;
}

/* 3) Ensure the header flex row matches the new logo height */
.site-header .header-container {
  min-height: clamp(72px, 12vw, 130px);
  align-items: center;  /* vertically centers the nav with the logo */
}

/* 4) Mobile tweak (optional): a touch smaller on narrow screens */
@media (max-width: 768px) {
  :root { --header-h: 90px; }  /* keep hero offset correct on small screens */
}
/* Feature item wraps the card + button so the button sits outside the box */
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;                 /* space between card and button */
  align-items: stretch;
}

/* Keep grid the same but ensure items align nicely at the top */
.features-grid { align-items: start; }

/* --- Big gap under the 3-card band (WoR-like spacing) --- */
.features {
  padding-bottom: clamp(80px, 12vw, 160px);  /* big vertical space before next section */
}

/* Wrap for card + button so button sits outside the box */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;       /* center the button with the card column */
  gap: 14px;                 /* small space between card and button */
}

/* Keep items aligned nicely in grid */
.features-grid { align-items: start; }

/* CTA container below each card */
.card-cta {
  width: 100%;
  display: flex;
  justify-content: center;   /* center the button under its card */
}

/* Long red button (white text) */
.btn-red {
  background-color: #ff3b3b;
  color: #fff;
  border: 0;
  text-decoration: none;
  font-weight: 800;

  /* make it LONG and pretty */
  width: min(420px, 85%);    /* long but not full column width */
  padding: 14px 28px;
  border-radius: 10px;

  text-align: center;
  transition: background-color .2s ease, transform .06s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(255, 59, 59, 0.25);
}

.btn-red:hover { background-color: #d6302d; color: #fff; }
.btn-red:active { transform: translateY(1px); }

/* On mobile, let the button fill the column for easier tapping */
@media (max-width: 900px) {
  .btn-red { width: 100%; }
}
/* Make each feature cell a flex column so we can push the CTA to the bottom */
.features-grid { align-items: stretch; }           /* ensure equal-height cells */
.feature-item {
  display: flex;
  flex-direction: column;
}

/* Put the button at the bottom of each cell, and add a big gap above it */
.card-cta {
  margin-top: auto;                 /* pushes CTA to the bottom of the equal-height cell */
  padding-top: 56px;                /* << big WoR-style gap between card and button */
  padding-bottom: 8px;              /* small breathing room under the button */
  width: 100%;
  display: flex;
  justify-content: center;          /* center the button under its card */
}

/* Longer, red button */
.btn-red {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: #e0002b;              /* red */
  border: none;
  border-radius: 8px;
  padding: 16px 22px;
  width: clamp(240px, 80%, 360px);  /* longer + responsive */
  transition: transform .12s ease, opacity .12s ease;
}
.btn-red:hover { transform: translateY(-1px); opacity: .95; }

/* Extra space below the whole features band so the row of buttons sits lower on the page */
.features { padding-bottom: 120px; }
/* ensure the red hover wins over nav a:hover */
nav a.btn-red:hover {
  background: #cf0026;   /* slightly darker red */
  color: #fff;
}

/* optional: keep the button vertically aligned in the header */
.nav-cta { align-self: center; }
/* Keep links left and button on the right, all on one line */
.main-nav{
  margin-left: auto;                 /* pushes nav to the right of the logo */
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.main-nav .nav-links{
  display: flex;
  gap: 25px;
  white-space: nowrap;               /* prevent link text wrapping */
  flex: 1 1 auto;                    /* take remaining space */
}
.main-nav .nav-cta{
  flex: 0 0 auto;                    /* keep button from shrinking/wrapping */
}

/* Make sure generic nav rule can't force wrapping */
header nav { flex-wrap: nowrap !important; }

/* Keep the red hover styling consistent over your nav a:hover */
nav a.btn-red:hover { background:#cf0026; color:#fff; }

/* When the header gets tight, reduce spacing before wrapping happens */
@media (max-width: 1100px){
  .main-nav .nav-links{ gap: 16px; }
}
@media (max-width: 980px){
  .main-nav .nav-cta{ padding: 12px 22px; font-size: 0.95rem; }
}
/* Left-align everything in the header */
.site-header .header-container{
  justify-content: flex-start;   /* was space-between */
  gap: 24px;
}

/* Nav row: allow shrink without creating horizontal scroll */
.main-nav{
  margin-left: 0;                /* was pushing all the way right */
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;                /* shrink if needed */
  min-width: 0;                  /* critical to avoid overflow */
}

/* Links cluster */
.main-nav .nav-links{
  display: flex;
  gap: 25px;
  flex: 0 1 auto;                /* shrinkable */
  min-width: 0;                  /* allow shrinking */
  white-space: normal;           /* allow wrapping if tight */
}

/* Red button stays readable but won’t cause scroll */
.main-nav .nav-cta{
  flex: 0 0 auto;                /* don't squish the button */
}

/* Remove any previous "no wrap" you might have added */
header nav { flex-wrap: wrap !important; }

/* Tweak spacing on medium screens so it stays one line */
@media (max-width: 1100px){
  .main-nav { gap: 14px; }
  .main-nav .nav-links { gap: 18px; }
}

/* On smaller screens, put the button on its own line centered */
@media (max-width: 900px){
  .main-nav { flex-wrap: wrap; }
  .main-nav .nav-cta{
    order: 2;
    width: 100%;
    text-align: center;
  }
}

/* Optional safety net: completely prevent horizontal scroll */
html, body { overflow-x: hidden; }
/* Make the three anchors direct flex items for spacing */
/* Nudge the nav (Home, Membership, Book Now) to the right */
.site-logo + .main-nav{
  margin-left: clamp(40px, 8vw, 160px);  /* adjust to taste */
}

/* keep everything left-aligned otherwise */
.site-header .header-container{ justify-content: flex-start; }
/* === Hero — narrow side overlay like World of Racing === */
.hero { 
  /* tweak this to control how narrow it is */
  --hero-panel-w: min(1100px, 92vw);
}

/* lighten the full-bleed tint so the inner panel stands out */
.hero::before {
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

/* center content; only vertical padding so side width is from the panel */
.hero-overlay{
  position: relative;
  z-index: 1;
  padding: clamp(28px, 6vw, 64px) 0;  /* vertical only */
  display: grid;
  place-items: center;
}

/* the actual narrow, rounded overlay behind the text */
.hero-overlay::before{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  width: var(--hero-panel-w);
  height: 100%;                /* matches content height */
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.8));
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  z-index: 0;
}

/* keep your text above the panel and give gentle side padding */
.hero-overlay > *{
  position: relative;
  z-index: 1;
  max-width: calc(var(--hero-panel-w) - 56px);
  padding: 0 clamp(12px, 3vw, 28px);
}
/* Reuse from homepage (if you don't already have it) */
.btn-red{
  display:inline-block;
  background:#e53935;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  padding:14px 28px;
  border-radius:8px;
  letter-spacing:.03em;
  transition:transform .12s ease, opacity .12s ease, filter .12s ease;
  box-shadow:0 8px 24px rgba(229,57,53,.25);
  border:1px solid rgba(255,255,255,.06);
}
.btn-red:hover{ transform:translateY(-1px); filter:brightness(1.05); }
.btn-red:active{ transform:translateY(0); }

/* Make the button wide and centered like the homepage */
.btn-red.is-wide{
  display:block;
  width: clamp(220px, 70%, 300px);
  text-align:center;
  margin: 0 auto;
}

/* Align the button to the bottom of each card and give breathing room */
.tier-card{
  display:flex;
  flex-direction:column;
}
.tier-body{
  display:flex;
  flex-direction:column;
  height:100%;
}
.tier-cta{
  margin-top:auto;               /* pushes CTA to bottom of the card */
  padding: 12px 0 4px;           /* small breathing room inside card */
}
/* Button that lives directly under the tier logo */
.tier-cta-top {
  padding: 10px 18px 0;
}

.tier-cta-top .btn-red.is-wide {
  width: clamp(220px, 70%, 300px);
  margin: 0 auto;
}
/* Put the CTA right under the logo, centered */
.tier-cta-top {
  display: flex;
  justify-content: center;
  padding: 0 18px;          /* no extra top padding */
  margin-top: -12px;        /* pull closer to the logo; adjust -6 to -20px to taste */
}

/* Keep the card text a bit below the button */
.tier-body { 
  padding-top: 14px; 
}

/* Make sure the button stays the same style/width as the home page */
.tier-cta-top .btn-red.is-wide {
  width: clamp(240px, 70%, 320px);
  margin: 0 auto;
}
/* Align all membership card CTAs under the logo, uniformly */
.tiers-grid { align-items: start; }

.tier-card {
  display: grid;
  grid-template-rows: auto auto 1fr; /* logo, button, rest */
  gap: 12px;
}

/* Make the logo area the same height on all cards */
.tier-media {
  height: 200px;                 /* uniform logo area */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}
.tier-media img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Center the button under the logo and keep it consistent */
.tier-cta-top {
  display: flex;
  justify-content: center;
  margin: 0 !important;          /* kill earlier negative margins */
  padding: 0 18px;
}
.tier-cta-top .btn-red.is-wide {
  width: clamp(240px, 70%, 320px);
  margin: 0 auto;
}

/* Give some breathing room before the text block */
.tier-body { padding-top: 8px; }

/* Safety: if you had an earlier nudge, neutralize it */
.tier-cta-top { transform: none !important; left: auto !important; }
