/* ============================================================
   MGM PICKLEBALL ACADEMY — Shared Stylesheet
   Colour: Navy #0B1B2B · Lime #C8F400 · White
   Font: Barlow Condensed (headings) · Barlow (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime:       #C8F400;
  --lime-dark:  #a0c200;
  --lime-pale:  rgba(200,244,0,0.08);
  --navy:       #0B1B2B;
  --navy-mid:   #122338;
  --navy-light: #0f2b45;
  --navy-deep:  #070f18;
  --white:      #ffffff;
  --gray-light: #f4f5f0;
  --gray-mid:   #7a8390;
  --text-dark:  #111820;
  --border:     #dde0da;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 13px 28px;
  border: 1.5px solid rgba(11,27,43,0.3);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(11,27,43,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,244,0,0.1);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 62px;
  width: auto;
  mix-blend-mode: lighten;
}
.nav-logo-words { line-height: 1.15; }
.nav-logo-words span {
  color: var(--lime);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--lime); border-bottom-color: var(--lime); }

.nav-cta {
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--lime-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--lime);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 26s linear infinite;
}
.marquee-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 26px;
}
.marquee-dot { opacity: 0.35; padding: 0 4px !important; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 130px 8% 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--lime);
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 6vw, 76px);
  color: var(--white);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.page-hero-title em { color: var(--lime); font-style: normal; }
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--lime); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SECTION LABELS ── */
.sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 10px;
  display: block;
}
.sec-tag-light { color: var(--lime); }

.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.sec-title-light { color: var(--white); }

.lime-bar {
  width: 40px; height: 3px;
  background: var(--lime);
  margin: 16px 0 24px;
}

/* ── PERK LIST ── */
.perk-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.perk-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}
.perk-list li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.perk-list.dark li { color: var(--gray-mid); }
.perk-list.dark li::before { color: var(--lime-dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--lime);
  padding: 80px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.cta-banner-sub {
  font-size: 15px;
  color: rgba(11,27,43,0.6);
  line-height: 1.5;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cta-wa-note {
  font-size: 12px;
  color: rgba(11,27,43,0.5);
  font-weight: 500;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-deep);
  padding: 64px 8% 28px;
  border-top: 1px solid rgba(200,244,0,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  mix-blend-mode: lighten;
  margin-bottom: 16px;
  display: block;
}
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo-text span { color: var(--lime); }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 100%;
}
.footer-contact-row {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-row a { color: var(--lime); text-decoration: none; }
.footer-col-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 8px;
  letter-spacing: 0.3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 6% 56px; }
}

/* ── MOBILE NAV PANEL ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  border-left: 3px solid var(--lime);
  z-index: 301;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav-panel.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--lime);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-links li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--lime); }
