@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --red: #B22222;
  --red-dark: #8b1a1a;
  --red-bright: #d42b2b;
  --black: #0f0f0f;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #222222;
  --text-light: #555555;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

nav .nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}

nav ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: var(--red);
}

.nav-register a {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
}

.nav-register a:hover {
  background: var(--red-dark) !important;
}

/* hamburger for mobile */
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; transition: 0.3s; }

/* ── HERO ── */
.hero {
  background: url('images/team-photo.jpg') center center / cover no-repeat;
  padding: 140px 48px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.38) 33%,
    rgba(0,0,0,0.50) 60%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 0;
}

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

.hero-text { max-width: 640px; position: relative; text-align: left; }



.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11pt;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hero h1 img {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15pt;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--gray); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #333; }

.hero-logo { display: none; }

/* ── SECTION SHELL ── */
section { padding: 64px 48px; }
section.dark { background: var(--black); color: var(--white); }
section.gray { background: var(--gray); }
section.red { background: var(--red); color: var(--white); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9pt;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

section.dark .section-label,
section.red .section-label { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36pt;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1;
}

section.dark .section-title { color: var(--white); }
section.red .section-title { color: var(--white); }

.section-sub {
  font-size: 12pt;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

section.dark .section-sub { color: rgba(255,255,255,0.7); }
section.red .section-sub { color: rgba(255,255,255,0.85); }

.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--red-dark), var(--red-bright), var(--red-dark));
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 24px 20px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36pt;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── PROGRAM CARDS ── */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.program-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.program-card-header {
  background: var(--black);
  padding: 24px 28px;
  border-top: 5px solid var(--red);
}

.program-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 8pt;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.program-card-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28pt;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.program-ages-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11pt;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.program-card-body {
  background: var(--white);
  padding: 24px 28px;
}

.program-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.program-detail .icon { font-size: 13pt; flex-shrink: 0; margin-top: 1px; }

.program-detail .detail-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12pt;
  color: var(--text);
  line-height: 1.3;
}

.program-detail .detail-text small {
  display: block;
  font-weight: 400;
  font-size: 10pt;
  color: var(--text-light);
}

.program-fee-box {
  margin-top: 16px;
  background: #fff0f0;
  border: 1px solid rgba(178,34,34,0.25);
  border-radius: 3px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fee-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 9pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.fee-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26pt;
  color: var(--red);
  line-height: 1;
}

.program-card-body .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ── INCLUDES ROW ── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.include-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  padding: 20px 16px;
  text-align: center;
  border-radius: 2px;
}

.include-item img { width: 100%; max-width: 120px; height: 110px; object-fit: contain; margin-bottom: 10px; }

.include-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12pt;
  color: var(--black);
  margin-bottom: 4px;
}

.include-item p { font-size: 9.5pt; color: var(--text-light); }

/* ── SCHEDULE TABLE ── */
.schedule-wrap { overflow-x: auto; margin-top: 24px; }

.schedule-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18pt;
  color: var(--red);
  letter-spacing: 2px;
  margin: 32px 0 12px;
}

.schedule-title:first-child { margin-top: 0; }

table.schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 10.5pt;
  min-width: 560px;
}

table.schedule th {
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 10pt;
}

table.schedule td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--text);
}

table.schedule tr:nth-child(even) td { background: var(--gray); }
table.schedule tr:hover td { background: #fff0f0; }

.tag-practice { background: #e8f4e8; color: #1a5c1a; padding: 2px 8px; border-radius: 2px; font-size: 9pt; font-weight: 600; white-space: nowrap; }
.tag-scrimmage { background: #fff3cd; color: #856404; padding: 2px 8px; border-radius: 2px; font-size: 9pt; font-weight: 600; white-space: nowrap; }
.tag-game { background: #fde8e8; color: var(--red-dark); padding: 2px 8px; border-radius: 2px; font-size: 9pt; font-weight: 600; white-space: nowrap; }

/* ── COACH CARDS ── */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.coach-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.coach-card {
  background: #1a1a1a;
  border-left: 4px solid var(--red);
  padding: 20px 22px;
  border-radius: 2px;
}

.coach-card.light {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-left: 4px solid var(--red);
}

.coach-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18pt;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.coach-card.light .coach-name { color: var(--black); }

.coach-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 8.5pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 10px;
}

.coach-bio {
  font-size: 10pt;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 10px;
}

.coach-card.light .coach-bio { color: var(--text-light); }

.coach-contact {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10pt;
  color: rgba(255,255,255,0.55);
}

.coach-card.light .coach-contact { color: var(--text-light); }
.coach-contact a { color: var(--red-bright); text-decoration: none; }
.coach-contact a:hover { text-decoration: underline; }

/* ── CONTACT / REGISTER ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22pt;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13pt;
  color: var(--white);
  margin-bottom: 10px;
  text-decoration: none;
}

.contact-item:hover { color: rgba(255,255,255,0.8); }
.contact-item .ci { font-size: 15pt; }

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.form-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22pt;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }

label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 9pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: 'Barlow', sans-serif;
  font-size: 11pt;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(178,34,34,0.1);
}

textarea { resize: vertical; min-height: 90px; }

/* ── STRIPE PAYMENT ── */
#payment-section { margin-top: 20px; }

#card-element {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: white;
  margin-bottom: 14px;
}

#card-element.StripeElement--focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(178,34,34,0.1); }
#card-errors { color: #c0392b; font-size: 10pt; margin-bottom: 10px; min-height: 18px; }

.payment-notice {
  font-size: 9pt;
  color: var(--text-light);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── ORDER SUMMARY ── */
.order-summary {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 16px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.order-row:last-child { border-bottom: none; font-size: 14pt; color: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

footer img.footer-logo { height: 50px; width: auto; }

.footer-links h4, .footer-contact h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9pt;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-links ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11pt;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 10.5pt;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 9pt;
  color: rgba(255,255,255,0.4);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 48px 48px 40px;
  border-bottom: 4px solid var(--red);
}

.page-hero .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9pt;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 8px;
}

.page-hero h1 {
  line-height: 1;
  margin: 0;
}

.page-hero h1 svg {
  overflow: visible;
}

.page-hero p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13pt;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}

/* ── ALERT / SUCCESS ── */
.alert {
  padding: 14px 18px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12pt;
  font-weight: 600;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.hidden { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  nav ul { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--black); padding: 16px 20px; gap: 4px; }
  nav ul.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { flex-direction: column; padding: 40px 20px; text-align: center; }
  .hero h1 { font-size: 42pt; }
  .hero-logo { display: none; }
  .hero-buttons { justify-content: center; }

  section { padding: 40px 20px; }
  .program-grid, .coach-grid, .coach-grid-3, .two-col, .includes-grid, .stats-row, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 32px 20px; }
}
