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

:root {
  --blue: #1C5CBF;
  --blue-dark: #143f8a;
  --yellow: #C8E428;
  --white: #ffffff;
  --light-bg: #f7f9fc;
  --text: #1a1a2e;
  --text-light: #555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--blue-dark);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo { height: 44px; }
.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-brand span { color: var(--yellow); }
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul a {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
nav ul a:hover { opacity: 1; color: var(--yellow); }

/* HERO */
.hero {
  padding-top: 64px;
  background: var(--blue-dark);
  text-align: center;
}
.hero-banner { width: 100%; line-height: 0; }
.hero-banner-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-content {
  padding: 40px 24px 60px;
  background: var(--blue-dark);
}
.hero-sub {
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 32px;
}
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--text); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: inherit;
}
.section-light h2, .section-light h3 { color: var(--blue); }
.section-blue h2 { color: var(--yellow); }
.section-dark h2 { color: var(--yellow); }

.section-intro {
  font-size: 1.05rem;
  color: inherit;
  opacity: 0.85;
  max-width: 680px;
  margin-bottom: 48px;
}
.section-dark .section-intro { opacity: 0.75; }

/* MISSION CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
  border-top: 4px solid var(--blue);
}
.card-icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.card h3 { color: var(--blue); margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* COACHES */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.group-label {
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 8px;
}
.coach { margin-bottom: 20px; }
.coach-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.coach-detail { color: var(--yellow); font-size: 0.95rem; margin-top: 4px; }
.coach-detail a { color: var(--yellow); }
.coach-detail a:hover { text-decoration: underline; }
.coach-list {
  list-style: none;
  color: rgba(255,255,255,0.85);
}
.coach-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}
.coach-list li:last-child { border-bottom: none; }

/* COMMITMENT */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.commit-block {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--blue);
}
.commit-block h3 {
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.commit-block ul {
  list-style: none;
  color: var(--text-light);
  font-size: 0.93rem;
}
.commit-block li {
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.commit-block li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.expectations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.expect-col h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--blue);
}
.check-list {
  list-style: none;
}
.check-list li {
  padding: 7px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid #e8edf2;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* FUNDRAISING */
.fundraise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.fundraise-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 32px 28px;
}
.fundraise-card h3 {
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 12px;
}
.fundraise-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* CONTACT */
.contact-container { text-align: center; }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 16px 28px;
  font-weight: 600;
  color: var(--blue);
  transition: background 0.2s, color 0.2s;
  font-size: 0.97rem;
}
.contact-item:hover {
  background: var(--blue);
  color: var(--white);
}
.contact-icon {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.88rem;
}
.footer-logo {
  height: 56px;
  margin-bottom: 16px;
  opacity: 0.9;
}
footer p { margin-bottom: 4px; }

/* PAGE HEADER (inner pages) */
.page-header {
  padding-top: 64px;
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding-bottom: 48px;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--yellow);
  margin-top: 40px;
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

/* ROSTER */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.player-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-left: 5px solid var(--blue);
  transition: transform 0.15s, box-shadow 0.15s;
}

.player-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.player-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 44px;
  text-align: center;
  line-height: 1;
}

.player-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.player-pos {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* SPONSORS */
.sponsor-tier { margin-bottom: 60px; }

.sponsor-tier-label {
  font-size: 1.1rem;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 10px;
  margin-bottom: 28px;
}

.sponsor-grid {
  display: grid;
  gap: 20px;
}

.sponsor-grid-lg { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.sponsor-grid-md { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.sponsor-grid-sm { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

.sponsor-slot {
  border-radius: 8px;
  overflow: hidden;
}

.sponsor-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.sponsor-slot-lg { height: 180px; }
.sponsor-slot-md { height: 140px; }
.sponsor-slot-sm { height: 110px; }

.sponsor-placeholder {
  width: 100%;
  height: 100%;
  background: #e2e8f0;
  border: 2px dashed #b0bec5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #90a4ae;
}

.sponsor-placeholder-icon { font-size: 1.6rem; }

.sponsor-placeholder-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sponsor-placeholder-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  nav ul { gap: 16px; }
  nav ul a { font-size: 0.82rem; }
  .hero-logo { width: 220px; }
}
