/* =========================
   BRAND COLORS (EXPOS)
========================= */
:root{
  --white: #ffffff;
  --black: #111111;

  --expos-red: #e11d2e;
  --expos-blue: #0b3b8f;

  --bg-main: #ffffff;
  --bg-panel: #f4f4f5;

  --text-main: #111111;
  --text-muted: #6b7280;

  --border: #e5e7eb;

  --shadow: 0 10px 28px rgba(0,0,0,0.12);
  --shadow-sm: 0 6px 16px rgba(0,0,0,0.08);
  --radius: 16px;

  --max: 1080px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f6f7fb;
  color: var(--text-main);
  line-height: 1.5;

  /* sticky footer layout */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

/* =========================
   LAYOUT
========================= */
header, main, footer{ width: 100%; }
header > *,
.mega-inner,
.mf-bottom-inner{
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}


main > *{
  max-width: none;
  margin: 0;
  padding: 0;
}


/* =========================
   HEADER
========================= */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--expos-blue);
  border-bottom: 4px solid var(--expos-red);
}

header .bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo{
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-title{
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}

/* Nav */
nav{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

nav a{
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}

nav a:hover{
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

nav a[aria-current="page"]{
  background: var(--expos-red);
}

/* =========================
   MAIN CONTENT
========================= */


/* Default pages keep spacing */
main{ padding: 36px 0 24px; }

/* Home page: let hero go full-bleed */
body.is-home main{ padding: 0; }
body.is-home #app{ padding: 0; }


#app{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;

  /* full-width content spacing */
  width: 100%;
  max-width: none;
  padding: 32px clamp(16px, 4vw, 48px);
}


h2{
  margin: 0 0 10px;
  font-size: 1.6rem;
}

h3{ margin: 18px 0 10px; }
h4{ margin: 14px 0 8px; }

p{
  margin: 0 0 12px;
  color: var(--text-muted);
}

hr{
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* =========================
   COMPONENTS / HELPERS (RESTORED)
========================= */

/* Cards */
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

/* Callout card */
.callout{
  border-left: 6px solid var(--expos-blue);
}

/* Grid helpers */
.grid-2, .grid-3{
  display: grid;
  gap: 14px;
}
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 820px){
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* Lists */
.clean-list{
  margin: 0;
  padding-left: 22px;
  color: var(--text-main);
}
.clean-list li{ margin: 6px 0; }

/* CTA buttons */
.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.cta:hover{
  transform: translateY(-1px);
  background: #fafafa;
}

.cta.primary{
  background: var(--expos-red);
  border-color: var(--expos-red);
  color: #fff;
}

/* Teams tabs */
.team-tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tab{
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  color: var(--text-main);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.tab:hover{
  transform: translateY(-1px);
  background: #fafafa;
}

.tab.active{
  background: var(--expos-red);
  border-color: var(--expos-red);
  color: #fff;
}

/* Coach list */
.coach-list{
  display: grid;
  gap: 10px;
}

/* FAQ */
.faq{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
  color: var(--text-main);
}

/* Pills */
.pill-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  font-weight: 900;
  font-size: 0.85rem;
}

/* Tables */
.simple-table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.simple-table th,
.simple-table td{
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.simple-table th{
  background: var(--bg-panel);
  color: var(--text-main);
  font-weight: 900;
}

.simple-table tr:last-child td{
  border-bottom: none;
}

/* Forms (Contact) */
label{
  display: block;
  font-weight: 900;
  margin: 12px 0 6px;
}

input, textarea{
  width: 100%;
  max-width: 520px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  outline: none;
  box-shadow: var(--shadow-sm);
}

textarea{
  min-height: 140px;
  resize: vertical;
}

input:focus, textarea:focus{
  border-color: rgba(11,59,143,0.6);
  box-shadow: 0 0 0 4px rgba(11,59,143,0.15);
}

/* =========================
   HERO (full screen slider)
========================= */
.hero{
  position: relative;
  width: 100%;
  height: calc(100vh - 72px); /* full screen minus sticky header height */
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.hero-slider{
  position: absolute;
  inset: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Make each slide fill the hero */
.hero .slide{
  min-width: 100%;
  height: 100%;
}

.hero .slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay makes text readable on any image */
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.55) 100%
    );
  pointer-events: none;
}

/* Centered text */
.hero-content{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(16px, 4vw, 56px);
  color: #fff;
  z-index: 2;
}

.hero-content h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 1000;
  letter-spacing: .2px;
  text-shadow: 0 8px 30px rgba(0,0,0,.55);
}

.hero-content p{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(14px, 1.6vw, 18px);
  text-shadow: 0 6px 22px rgba(0,0,0,.55);
}

/* Keep buttons readable on hero */
.hero-content .cta{
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Slider controls over hero */
.hero .slider-btn{
  z-index: 3;
  background: rgba(0,0,0,0.45);
}
.hero .slider-dots{
  z-index: 3;
}


/* Page padding */
.page-pad{
  padding: 32px clamp(16px, 4vw, 48px);
}




/* =========================
   SLIDER (needed for hero)
========================= */
.slider{
  overflow: hidden;
}

.slider-track{
  display: flex;
  height: 100%;
  width: 100%;
  transform: translateX(0);
  transition: transform 500ms ease;
  will-change: transform;
}

.slider .slide{
  flex: 0 0 100%;
  height: 100%;
}
/* GameChanger*/
.gc-shell{
  position: relative;
  width: 100%;
  min-height: 600px;
  transition: min-height 300ms ease;
}

#gc-schedule-widget-o4pg{ 
  width: 100%;
  min-height: 500px;
}

/* Loading placeholder */
.gc-shell::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--expos-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.gc-shell:has(iframe)::after {
  display: none;
}

@keyframes spin {
  to { transform: translateX(-50%) rotate(360deg); }
}



/* =========================
   EVENT IMAGES
========================= */
.event-images{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.event-images img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* =========================
   MEGA FOOTER (like screenshot)
========================= */
.mega-footer{
  margin-top: 36px;
  background: var(--expos-blue);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.mega-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 18px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.mf-logo{
  width: min(220px, 100%);
  height: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.35));
}

.mf-blurb{
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  line-height: 1.7;
}

.mf-title{
  margin: 0 0 14px;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 900;
}

.mf-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mf-links a{
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mf-links a::before{
  content: "›";
  color: rgba(255,255,255,0.55);
  font-weight: 900;
}

.mf-links a:hover{
  color: #fff;
  text-decoration: underline;
}

.mf-contact{
  display: grid;
  gap: 12px;
}

.mf-contact-row{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,0.85);
}

.mf-contact-row a{
  color: rgba(255,255,255,0.85);
  font-weight: 800;
}

.mf-contact-row a:hover{
  color: #fff;
  text-decoration: underline;
}

.mf-icon{
  opacity: 0.85;
  line-height: 1.2;
}

.mf-social{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mf-social-btn{
  width: 64px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c9b458; /* gold-ish like the example */
  color: #070708;
  border-radius: 10px;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}

.mf-social-btn:hover{
  transform: translateY(-1px);
}

/* Bottom bar */
.mf-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #050506;
}

.mf-bottom-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  text-align: center;
  letter-spacing: 1.6px;
  font-weight: 900;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

html, body { height: 100%; }


main{
  flex: 1;
}


/* Responsive */
@media (max-width: 980px){
  .mega-inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px){
  .mega-inner{
    grid-template-columns: 1fr;
  }
  .mf-social-btn{
    width: 72px;
  }
}

/* =========================
   ABOUT PAGE – FORCE BLACK TEXT
========================= */
.about-page,
.about-page p,
.about-page li,
.about-page span,
.about-page strong,
.about-page em {
  color: var(--text-main);
}


/* =========================
   MOBILE
========================= */
@media (max-width: 680px){
  .brand-title{ display: none; }
  #app{ padding: 18px; }

  /* Keep header links in the header (no wrapping) */
  nav{
    flex-wrap: nowrap;          /* stop wrapping (this is the big fix) */
    overflow-x: auto;           /* allow horizontal scroll */
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;      /* Firefox hide scrollbar */
  }
  nav::-webkit-scrollbar{ display: none; } /* Chrome/Safari hide scrollbar */

  nav a{
    white-space: nowrap;        /* keep each button on one line */
    padding: 6px 10px;          /* tighter so more fit */
    font-size: 0.92rem;
  }
}

