/* AYSO 206 Coach Hub — Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #185FA5;
  --blue-light: #E6F1FB;
  --blue-mid: #B5D4F4;
  --navy: #0C447C;
  --green: #3B6D11;
  --green-light: #EAF3DE;
  --amber: #7A3800;
  --amber-light: #FEF0DC;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-soft: #666;
  --text-faint: #999;
  --border: #e5e5e5;
  --bg: #f5f5f3;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 6px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 1rem;
}
.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }

/* PAGE WRAPPER */
.page { max-width: 900px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

/* HERO */
.hero { margin-bottom: 2.5rem; }
.hero-tag { font-size: 12px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.hero h1 { font-size: 36px; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 0.75rem; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub { font-size: 16px; color: var(--text-soft); max-width: 560px; }

/* CARDS */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; }
.card-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }

/* DATES BANNER */
.dates-banner {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dates-banner-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.dates-banner-body { flex: 1; }
.dates-banner-title { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.dates-banner-items { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.dates-banner-item { font-size: 13px; color: var(--text-mid); }
.dates-banner-item strong { color: var(--navy); }
.dates-banner-item.action { color: var(--amber); }
.dates-banner-item.action strong { color: var(--amber); }

/* CALENDAR */
.cal-item { display: flex; gap: 12px; align-items: flex-start; padding: 0.65rem 0; border-bottom: 1px solid #f0f0f0; }
.cal-item:last-child { border-bottom: none; padding-bottom: 0; }
.cal-date { min-width: 72px; font-size: 11px; font-weight: 600; color: var(--blue); background: var(--blue-light); padding: 4px 8px; border-radius: var(--radius-sm); text-align: center; line-height: 1.4; flex-shrink: 0; }
.cal-date.action { color: var(--amber); background: var(--amber-light); }
.cal-event { font-size: 14px; color: var(--text); line-height: 1.5; padding-top: 2px; }
.cal-event span { font-size: 12px; color: var(--text-faint); display: block; margin-top: 1px; }

/* TRACK BOXES */
.track { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem; }
.track-header { padding: 1rem 1.25rem; display: flex; align-items: center; gap: 10px; }
.track-header.blue { background: var(--blue-light); border-bottom: 1px solid var(--blue-mid); }
.track-header.amber { background: var(--amber-light); border-bottom: 1px solid #f5d4a8; }
.track-header-icon { font-size: 22px; }
.track-header-title { font-size: 16px; font-weight: 700; color: var(--navy); }
.track-header.amber .track-header-title { color: var(--amber); }
.track-header-sub { font-size: 13px; color: var(--text-soft); margin-top: 2px; }
.track-body { padding: 1.25rem; background: var(--white); }

/* STEPS */
.step { display: flex; gap: 12px; align-items: flex-start; padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-light); color: var(--navy); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-num.amber { background: var(--amber-light); color: var(--amber); }
.step-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.step-sub { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

/* NOTE BOX */
.note { background: var(--blue-light); border-left: 3px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 0.75rem 1rem; margin: 1rem 0; font-size: 13px; color: var(--navy); line-height: 1.6; }
.note.amber { background: var(--amber-light); border-color: var(--amber); color: var(--amber); }

/* LINKS */
a.inline-link { color: var(--blue); text-decoration: none; }
a.inline-link:hover { text-decoration: underline; }

/* FOOTER */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 2rem 1.5rem; margin-top: 3rem; }
.footer-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 0.75rem; }
.footer-col a { display: block; font-size: 13px; color: var(--text-soft); text-decoration: none; margin-bottom: 4px; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { max-width: 900px; margin: 1.5rem auto 0; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-faint); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .page { padding: 1.5rem 1rem 3rem; }
  .hero h1 { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .dates-banner-items { flex-direction: column; gap: 4px; }
}
