/* ============================================
   COACH JOHN BUSH — GLOBAL STYLESHEET
   ============================================ */

/* === TOKENS === */
:root {
  --navy:    #1B2B4B;
  --coral:   #FF6B4A;
  --teal:    #2A7F7F;
  --cream:   #FAF7E8;
  --charcoal:#2A2A2A;
  --mid-gray:#6B7280;
  --light-gray:#F3F4F6;
  --white:   #FFFFFF;
  --font-display: 'Trebuchet MS', 'Gill Sans', 'Century Gothic', sans-serif;
  --font-body:    'Avenir', 'Century Gothic', 'Gill Sans MT', Calibri, sans-serif;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 18px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* === UTILITY === */
.coral-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.section-body {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #E55A3A; transform: translateY(-2px); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: #142240; transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--teal);
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--coral);
  padding: 14px 30px;
  border: 2px solid var(--coral);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* === NAVIGATION === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy);
  text-transform: uppercase;
}
.nav-brand-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #E55A3A !important; color: var(--white) !important; }

/* === FOOTER === */
footer {
  background: var(--navy);
  padding: 56px 80px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-email a {
  color: var(--coral);
  font-weight: 600;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--coral); }
.footer-siel-link {
  color: var(--coral) !important;
  font-weight: 600 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--navy);
  padding: 72px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px 24px; }
  .page-hero { padding: 48px 24px; }
  .page-hero h1 { font-size: 28px; }
}
