/* ============================================
   WESTSIDE TITANS - Youth Football & Cheer
   Professional Sports Organization Theme
   Colors: Navy #0A1628, Gold #C8A415, White
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0A1628;
  --navy-light: #142240;
  --navy-dark: #060E1A;
  --gold: #C8A415;
  --gold-light: #E8C94A;
  --gold-dark: #9A7E10;
  --white: #FFFFFF;
  --off-white: #F4F5F7;
  --gray-100: #E8EAED;
  --gray-200: #D1D5DB;
  --gray-300: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --red: #DC2626;
  --green: #16A34A;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.2);
  --shadow-xl: 0 12px 40px rgba(0,0,0,.25);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: .3s ease;
  --max-width: 1240px;
  --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.gold-accent { color: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--navy-dark); color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,164,21,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--navy);
  z-index: 1000;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 900;
}
.logo span { color: var(--gold); }

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .85rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .88rem;
  border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(200,164,21,.1);
}
.nav-links .btn {
  margin-left: .5rem;
  padding: .5rem 1.2rem;
  font-size: .82rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Mobile Nav */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    transition: right .35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    padding: .75rem 1rem;
    font-size: .95rem;
  }
  .nav-links .btn { margin-left: 0; margin-top: .5rem; width: 100%; justify-content: center; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #0D1E38 100%);
  overflow: hidden;
  margin-top: var(--header-height);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1570750879793-79a0e9c13bf8?w=1600&q=80') center/cover;
  opacity: .18;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-dark), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 2rem 1.25rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,164,21,.15);
  color: var(--gold);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,164,21,.3);
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero h1 .gold { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 7rem 0 3rem;
  margin-top: var(--header-height);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1570750879793-79a0e9c13bf8?w=1600&q=80') center/cover;
  opacity: .1;
}
.page-hero h1 {
  position: relative;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.page-hero p {
  position: relative;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
}
.breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-100);
}
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  background: rgba(200,164,21,.12);
  color: var(--gold-dark);
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.card-title { margin-bottom: .5rem; }
.card-text { color: var(--gray-500); font-size: .95rem; }

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.tab-btn {
  padding: .6rem 1.4rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.tab-content { display: none; animation: fadeIn .4s ease; }
.tab-content.active { display: block; }

/* ---------- Tables ---------- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-table thead { background: var(--navy); color: var(--white); }
.schedule-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.schedule-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: .93rem;
}
.schedule-table tbody tr:hover { background: rgba(200,164,21,.05); }
.schedule-table .result-win { color: var(--green); font-weight: 700; }
.schedule-table .result-loss { color: var(--red); font-weight: 700; }
@media (max-width: 768px) {
  .schedule-table { font-size: .85rem; }
  .schedule-table th, .schedule-table td { padding: .65rem .75rem; }
}

/* ---------- Coach Card ---------- */
.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.coach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.coach-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.coach-info { padding: 1.25rem; }
.coach-role {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.coach-name { font-size: 1.1rem; margin-bottom: .25rem; }
.coach-bio { font-size: .88rem; color: var(--gray-500); }

/* ---------- Award / Trophy Card ---------- */
.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}
.award-card:hover { box-shadow: var(--shadow-md); }
.award-year-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.15); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--gray-700);
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,21,.15);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--gray-500); margin-top: .25rem; }

/* Radio / Checkbox group */
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}
.radio-option:hover { border-color: var(--gold); }
.radio-option input { accent-color: var(--gold); }
.radio-option input:checked ~ span { color: var(--gold-dark); }

/* ---------- Accordion / FAQ ---------- */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .98rem;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--gold-dark); }
.accordion-icon {
  font-size: 1.4rem;
  transition: transform .3s;
  color: var(--gold);
  flex-shrink: 0;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.accordion-item.active .accordion-body {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}
.accordion-body p { color: var(--gray-500); line-height: 1.7; }

/* ---------- Fee Table ---------- */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fee-table thead { background: var(--navy); color: var(--white); }
.fee-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
}
.fee-table td {
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}
.fee-table tbody tr:hover { background: var(--off-white); }
.fee-highlight {
  background: rgba(200,164,21,.08) !important;
  font-weight: 700;
}

/* ---------- Sponsors ---------- */
.sponsors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: .6;
  filter: grayscale(100%);
  transition: var(--transition);
}
.sponsors-row:hover { opacity: .9; filter: grayscale(0%); }
.sponsor-logo {
  height: 48px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gray-500);
  letter-spacing: .02em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: 1rem; font-size: 1.2rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-title {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .6rem;
  font-size: .9rem;
}
.footer-contact .icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ---------- Animations ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,0,0,.03) 40px, rgba(0,0,0,.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,.03) 40px, rgba(0,0,0,.03) 41px);
}

/* ---------- Dividers ---------- */
.divider-gold {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .3rem;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  margin-left: -5.5px;
}
.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: .25rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.overflow-x { overflow-x: auto; }

/* Info cards */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon {
  width: 56px; height: 56px;
  background: rgba(200,164,21,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Leader cards */
.leader-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  object-fit: cover;
}
.leader-name { font-size: 1.05rem; margin-bottom: .15rem; }
.leader-title { color: var(--gold-dark); font-size: .85rem; font-weight: 600; }

/* Cheer specific */
.cheer-accent { border-left: 4px solid var(--gold); padding-left: 1.25rem; }

/* Success modal */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.success-modal.active { display: flex; }
.success-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-xl);
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

/* Scroll top button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* Table responsive */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); }

/* Badge */
.badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-red { background: #FEE2E2; color: #991B1B; }

/* Value cards */
.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
  text-align: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* All-star player card */
.player-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.player-card:hover { background: var(--gray-100); }
.player-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
  flex-shrink: 0;
}
.player-name { font-weight: 700; font-size: .95rem; }
.player-position { font-size: .82rem; color: var(--gray-500); }

/* Toggle for football/cheer */
.toggle-group {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 2rem;
}
.toggle-btn {
  padding: .55rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.toggle-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Important dates */
.date-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.date-card:hover { box-shadow: var(--shadow-md); }
.date-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.date-month { font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.date-day { font-size: 1.3rem; font-weight: 900; line-height: 1; }

/* ========== NEW HEADER/FOOTER STYLES (v2) ========== */
/* Logo with SVG + text */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.logo-sub {
  font-size: .65rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.logo .logo-icon svg {
  width: 44px;
  height: 44px;
}

/* Nav toggle (hamburger v2) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Main nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.main-nav a {
  padding: .5rem .75rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .85rem;
  border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(200,164,21,.1);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    padding: 5rem 1.5rem 2rem;
    transition: right .35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,.5);
    z-index: 1000;
  }
  .main-nav.open { right: 0; }
  .main-nav ul {
    flex-direction: column;
    gap: .25rem;
  }
  .main-nav a {
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    font-size: .95rem;
  }
}

/* Footer v2 */
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-col h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  font-size: .9rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: .9rem; line-height: 1.7; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo .logo-icon svg {
  width: 40px;
  height: 40px;
}
.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Success modal v2 (for contact page) */
.success-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.success-modal-content .close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--gray-500);
}
.success-modal-content .close-modal.btn {
  position: static;
  font-size: .95rem;
}

/* Form label v2 */
.form-label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--gray-700);
}

/* Responsive 2-col layout */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Mobile: Hero Stats Counter ---------- */
@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem 2rem;
    justify-content: center;
  }
  .hero-stat-num {
    font-size: 2rem;
  }
  .fee-table th,
  .fee-table td {
    padding: .65rem .75rem;
    font-size: .82rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stat {
    text-align: center;
  }
  .hero-stat-num {
    font-size: 1.65rem;
    white-space: nowrap;
  }
  .hero-stat-label {
    font-size: .75rem;
  }
  .fee-table thead {
    display: none;
  }
  .fee-table,
  .fee-table tbody,
  .fee-table tr,
  .fee-table td {
    display: block;
    width: 100%;
  }
  .fee-table tr {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: .75rem;
    border-left: 4px solid var(--gold);
  }
  .fee-table td {
    padding: .4rem .75rem;
    border-bottom: none;
    font-size: .9rem;
    text-align: left;
  }
  .fee-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    display: block;
    margin-bottom: .15rem;
  }
}
