/* ═══════════════════════════════════════════════════════════
   AYSO Region 206 — Coach Hub  |  style.css
   Palette: Navy · Green · Gold  (matches the 2026 deck)
═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0A2240;
  --navy-light: #132E4A;
  --green:      #1A7A4A;
  --green-dark: #155E39;
  --gold:       #F5A623;
  --gold-dark:  #D4891B;
  --white:      #FFFFFF;
  --off-white:  #F4F8F6;
  --light:      #E8F5EE;
  --gray-light: #CBD5E0;
  --gray:       #6B7A8D;
  --text:       #1A2533;
  --red:        #C0392B;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin-bottom: 0.8rem; }
a  { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────────── */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ── Nav ──────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 62px;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--white); font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 900; letter-spacing: 0.03em;
}
.nav-brand .ball { font-size: 1.5rem; }
.nav-brand span  { color: var(--gold); }
.nav-links { display: flex; gap: 0.2rem; }
.nav-links a {
  color: var(--gray-light); font-size: 0.9rem; font-weight: 600;
  font-family: var(--font-display); letter-spacing: 0.05em;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  transition: all var(--transition); text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(255,255,255,0.08);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy); position: relative;
  overflow: hidden; padding: 5rem 0 4rem;
}
.hero::before {
  content: ''; position: absolute; top: -60px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,74,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '⚽'; position: absolute; bottom: -30px; right: 5%;
  font-size: 18rem; opacity: 0.04; line-height: 1; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 4px; margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  color: var(--gray-light); font-size: 1.15rem;
  margin-bottom: 2rem; max-width: 580px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; padding: 0.7rem 1.5rem;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  text-transform: uppercase; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  color: var(--white); transform: translateY(-2px);
}
.btn-sm { font-size: 0.85rem; padding: 0.45rem 1rem; }

/* ── Quick Nav ────────────────────────────────────────────── */
.quick-nav { background: var(--green); padding: 2rem 0; }
.quick-nav-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem;
}
.qn-card {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 1rem 0.75rem; text-align: center;
  color: var(--white); cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: block;
}
.qn-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); color: var(--white); }
.qn-icon  { font-size: 1.8rem; margin-bottom: 0.4rem; display: block; }
.qn-label { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { color: var(--navy); }
.section-header p  { color: var(--gray); font-size: 1.05rem; margin-top: 0.4rem; margin-bottom: 0; }
.section-tag {
  display: inline-block; background: var(--light); color: var(--green);
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.7rem;
  border-radius: 4px; margin-bottom: 0.5rem; border-left: 3px solid var(--green);
}

/* ── Cards ────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.5rem; }

/* ── Resource Cards ───────────────────────────────────────── */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.resource-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border-left: 4px solid var(--navy); transition: all var(--transition);
  text-decoration: none; color: var(--text);
}
.resource-card:hover { transform: translateX(4px); border-left-color: var(--gold); box-shadow: var(--shadow-lg); color: var(--text); }
.resource-card.green { border-left-color: var(--green); }
.resource-card.gold  { border-left-color: var(--gold); }
.resource-card.red   { border-left-color: var(--red); }
.rc-icon {
  font-size: 2rem; flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white); border-radius: 10px;
}
.rc-text h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem; }
.rc-text p  { font-size: 0.88rem; color: var(--gray); margin: 0; }
.rc-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  font-family: var(--font-display); letter-spacing: 0.08em;
  padding: 0.1rem 0.5rem; border-radius: 3px; margin-top: 0.3rem; text-transform: uppercase;
}
.badge-pdf  { background: #FDECEA; color: var(--red); }
.badge-link { background: #E8F5EE; color: var(--green); }
.badge-doc  { background: #EEF2FF; color: #3B4FC8; }
.badge-pptx { background: #FFF3E0; color: #E65100; }

/* ── Tenets Grid ──────────────────────────────────────────── */
.tenets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.tenet-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.4rem;
  box-shadow: var(--shadow); border-top: 4px solid var(--green); transition: transform var(--transition);
}
.tenet-card:hover { transform: translateY(-3px); }
.tenet-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--light); line-height: 1; margin-bottom: -0.4rem; }
.tenet-card h3 { color: var(--navy); margin-bottom: 0.4rem; }
.tenet-card p  { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* ── Steps ────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  color: var(--white); background: var(--navy);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; line-height: 1;
}
.step-body h3 { color: var(--navy); margin-bottom: 0.25rem; }
.step-body p  { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* ── Accordion ────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0.6rem; }
.acc-item  { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.acc-header {
  width: 100%; background: none; border: none; padding: 1.1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--navy); text-align: left; gap: 1rem;
  transition: background var(--transition);
}
.acc-header:hover { background: var(--off-white); }
.acc-arrow { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; color: var(--green); }
.acc-item.open .acc-header { background: var(--navy); color: var(--white); }
.acc-item.open .acc-arrow  { transform: rotate(180deg); color: var(--gold); }
.acc-body  { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-inner { padding: 1.2rem 1.4rem; border-top: 1px solid var(--off-white); }
.acc-inner p, .acc-inner li { font-size: 0.95rem; color: var(--gray); }
.acc-inner ul { margin-top: 0.5rem; }
.acc-inner ul li { padding: 0.25rem 0 0.25rem 1.2rem; position: relative; }
.acc-inner ul li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── Contact Cards ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow); text-align: center; }
.contact-card .cc-icon { font-size: 2.2rem; margin-bottom: 0.5rem; display: block; }
.contact-card h3   { font-size: 1rem; color: var(--navy); margin-bottom: 0.15rem; }
.contact-card .role { font-size: 0.82rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.contact-card a    { font-size: 0.88rem; display: block; color: var(--gray); }
.contact-card a:hover { color: var(--navy); }

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius); padding: 1.1rem 1.3rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 1rem; font-size: 0.95rem;
}
.alert-gold  { background: #FFF8E1; border-left: 4px solid var(--gold); }
.alert-green { background: var(--light); border-left: 4px solid var(--green); }
.alert-red   { background: #FDECEA; border-left: 4px solid var(--red); }
.alert-icon  { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.05rem; }
.alert strong { color: var(--navy); }

/* ── Grid layouts ─────────────────────────────────────────── */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── Callout ──────────────────────────────────────────────── */
.callout { background: var(--navy); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; color: var(--white); }
.callout h2 { color: var(--white); margin-bottom: 0.5rem; }
.callout p  { color: var(--gray-light); margin-bottom: 1.5rem; }

/* ── Footer ───────────────────────────────────────────────── */
#footer { background: var(--navy); color: var(--gray-light); padding: 3rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 900;
  color: var(--white); margin-bottom: 0.5rem;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.footer-col a {
  display: block; color: var(--gray-light); font-size: 0.88rem;
  padding: 0.2rem 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--gold); }

/* ── Disclaimer ───────────────────────────────────────────── */
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0 1.5rem;
  margin-top: 0;
}
.footer-disclaimer p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.footer-disclaimer p a {
  color: rgba(245,166,35,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer p a:hover { color: var(--gold); }

/* ── Utility ──────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-navy   { color: var(--navy); }
.text-gray   { color: var(--gray); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.bg-navy  { background: var(--navy); }
.bg-green { background: var(--green); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.rounded  { border-radius: var(--radius-lg); }
.shadow   { box-shadow: var(--shadow); }
.p-2      { padding: 2rem; }

/* ── Fade-in ──────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .two-col, .three-col, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  #nav .nav-inner { position: relative; }
}
@media (max-width: 600px) {
  .resources-grid { grid-template-columns: 1fr; }
  .quick-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .tenets-grid    { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}
