/* ═══════════════════════════════════════════════════════════
   Cottonwood FC — Main Stylesheet
   Theme: Bright & Bold (Concept 4)
   ═══════════════════════════════════════════════════════════ */

:root {
  --red:        #C41E3A;
  --red-hover:  #A5182F;
  --orange:     #F7931E;
  --dark:       #1A1A1A;
  --body:       #3A3A3A;
  --warm-white: #FAFAF8;
  --light:      #F3EEE8;
  --border:     #E5DDD4;
  --white:      #FFFFFF;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--warm-white);
  color: var(--body);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAV ──────────────────────────────────────────────────── */
#site-nav {
  position: sticky; top: 0; z-index: 200;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
/* WordPress custom logo wraps in <a><img></a> — target that */
.nav-logo .custom-logo-link img { height: 36px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--body); text-decoration: none;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--red); }

.nav-btn {
  background: var(--red) !important; color: white !important;
  padding: 11px 24px; border-radius: 28px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.28);
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--orange) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.25s; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; overflow: hidden; }

.hero-left {
  background: white; padding: 80px 5% 80px 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,30,58,0.08); color: var(--red);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 20px; margin-bottom: 28px; width: fit-content;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; }

h1.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08; color: var(--dark);
  margin-bottom: 24px; letter-spacing: -1px; text-transform: uppercase;
}
h1.hero-headline em { font-style: italic; color: var(--red); }

.hero-mission {
  font-size: 0.97rem; color: #666; line-height: 1.8;
  max-width: 460px; margin-bottom: 40px; font-weight: 500;
  border-left: 3px solid var(--red); padding-left: 16px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; padding: 15px 34px;
  background: var(--red); color: white;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px;
  box-shadow: 0 6px 20px rgba(196,30,58,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,30,58,0.45); background: var(--red-hover); }

.btn-outline {
  display: inline-block; padding: 13px 34px;
  border: 2px solid var(--border); color: var(--dark);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--red); background: rgba(196,30,58,0.04); }

.hero-badges {
  display: flex; gap: 32px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-badge strong { display: block; font-size: 1.9rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero-badge span { font-size: 0.72rem; color: #999; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.hero-right {
  background: linear-gradient(145deg, var(--red) 0%, #8B0F20 60%, #5A0010 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px;
  padding: 60px 40px;
}
.hero-right-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-shield {
  position: relative; z-index: 2;
  width: 140px; height: 158px;
  background: rgba(255,255,255,0.12); border-radius: 12px 12px 70px 70px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.hero-shield img { width: 90px; height: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.hero-announcement {
  position: relative; z-index: 2;
  background: white; border-radius: 16px; padding: 26px 30px;
  max-width: 320px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.announce-label { font-size: 0.66rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.announce-title { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; line-height: 1.3; text-transform: uppercase; }
.announce-detail { font-size: 0.8rem; color: #777; line-height: 1.65; margin-bottom: 18px; }
.announce-btn {
  display: inline-block; padding: 11px 24px;
  background: var(--red); color: white; font-size: 0.78rem; font-weight: 800;
  border-radius: 24px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.35);
  transition: background 0.2s;
}
.announce-btn:hover { background: var(--orange); }
.hero-orange-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--red);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); color: white; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 0.67rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; }

/* ── SHARED SECTION ───────────────────────────────────────── */
section { padding: 88px 5%; }
.sec-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 4px; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 48px; color: var(--dark); }
.sec-title.centered, .sec-eyebrow.centered { text-align: center; }

/* ── MISSION ──────────────────────────────────────────────── */
.mission-sect { background: var(--light); }
.mission-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mission-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 5px; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; }
.mission-quote {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700; line-height: 1.7; color: var(--dark);
  margin-bottom: 60px; position: relative; padding: 0 28px;
}
.mission-quote::before {
  content: '"'; position: absolute; left: -4px; top: -24px;
  font-size: 6rem; color: var(--red); line-height: 1; opacity: 0.25;
  font-family: Georgia, serif;
}
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: rgba(196,30,58,0.2); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 16px; }
.pillar h3 { font-size: 0.92rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; color: var(--red); }
.pillar p { font-size: 0.83rem; color: #777; line-height: 1.75; }

/* ── QUICK ACTIONS ────────────────────────────────────────── */
.quick { background: var(--warm-white); }
.actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.action-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 34px 22px; text-align: center;
  text-decoration: none; color: var(--dark);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.action-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.action-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: rgba(196,30,58,0.25); }
.action-card:hover::after { transform: scaleX(1); }
.action-icon { font-size: 2.4rem; margin-bottom: 16px; }
.action-card h3 { font-size: 0.88rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; color: var(--dark); }
.action-card p { font-size: 0.82rem; color: #888; line-height: 1.65; }
.action-arrow { margin-top: 18px; color: var(--red); font-size: 1.1rem; font-weight: 700; }

/* ── DEVELOPMENT PHILOSOPHY ───────────────────────────────── */
.dev-sect { background: var(--light); }
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.dev-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.1; color: var(--dark);
}
.dev-left h2 span { color: var(--red); }
.dev-intro { font-size: 0.92rem; color: #777; line-height: 1.8; margin-bottom: 32px; }
.dev-cta {
  display: inline-block; padding: 14px 32px;
  background: var(--red); color: white;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.28);
  transition: background 0.2s;
}
.dev-cta:hover { background: var(--orange); }
.dev-principles { display: flex; flex-direction: column; gap: 14px; }
.principle {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 22px;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.principle:hover { border-left-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.principle-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.principle-text strong { display: block; font-size: 0.83rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.principle-text p { font-size: 0.8rem; color: #888; line-height: 1.65; }

/* ── PARENT EXPECTATIONS ──────────────────────────────────── */
.parents-sect { background: var(--warm-white); }
.parents-inner { max-width: 800px; margin: 0 auto; }
.parents-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.parent-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.parent-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.parent-icon { font-size: 2rem; margin-bottom: 16px; }
.parent-card h3 { font-size: 0.88rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.parent-card p { font-size: 0.85rem; color: #777; line-height: 1.75; }

/* ── NEWS ─────────────────────────────────────────────────── */
.news-sect { background: var(--light); }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.view-all { font-size: 0.8rem; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.view-all:hover { text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.archive-grid { grid-template-columns: repeat(3, 1fr); }
.news-card {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.news-thumb { height: 175px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-thumb.t1 { background: linear-gradient(135deg, #fce8eb, #f9c0c9); }
.news-thumb.t2 { background: linear-gradient(135deg, #fef0e0, #fcd9b0); }
.news-thumb.t3 { background: linear-gradient(135deg, #fce8eb, #fcd5ba); }
.news-emoji { font-size: 3.5rem; }
.news-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.badge-red    { background: rgba(196,30,58,0.12); color: var(--red); }
.badge-orange { background: rgba(247,147,30,0.15); color: #b85a00; }
.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.7rem; color: var(--orange); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.news-ttl { font-size: 1rem; font-weight: 800; line-height: 1.4; margin-bottom: 10px; color: var(--dark); }
.news-exc { font-size: 0.82rem; color: #888; line-height: 1.65; margin-bottom: 14px; flex: 1; }
.news-link { font-size: 0.75rem; font-weight: 800; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.news-link:hover { text-decoration: underline; }

/* ── AGE GROUPS ───────────────────────────────────────────── */
.age-sect { background: var(--warm-white); }
.age-intro { max-width: 560px; color: #888; line-height: 1.8; font-size: 0.92rem; margin-bottom: 52px; }
.age-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.age-card {
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 14px; text-align: center;
  text-decoration: none; color: var(--dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.age-card:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); color: white; box-shadow: 0 10px 28px rgba(196,30,58,0.3); }
.age-hex {
  width: 50px; height: 50px;
  background: linear-gradient(145deg, var(--red), var(--orange));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: white; margin: 0 auto 12px;
}
.age-name { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.age-detail { font-size: 0.7rem; color: #aaa; }
.age-card:hover .age-detail { color: rgba(255,255,255,0.7); }

/* ── TRYOUTS BAND ─────────────────────────────────────────── */
.tryouts-band {
  background: linear-gradient(135deg, #8B0F20, var(--red), var(--orange));
  padding: 72px 5%; display: flex; align-items: center; justify-content: space-between; gap: 32px; color: white;
}
.tryouts-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.tryouts-band p { margin-top: 8px; opacity: 0.9; font-size: 0.92rem; }
.btn-white {
  display: inline-block; padding: 15px 34px; background: white; color: var(--red);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--dark); color: white; }

/* ── APPAREL ──────────────────────────────────────────────── */
.apparel-band {
  background: var(--light);
  padding: 64px 5%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.apparel-slogan { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; color: var(--dark); margin-bottom: 8px; }
.apparel-slogan em { font-style: italic; color: var(--red); }
.apparel-desc { font-size: 0.9rem; color: #888; line-height: 1.7; max-width: 480px; }
.apparel-tags { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.apparel-tag {
  background: white; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--body);
}

/* ── SPONSORS ─────────────────────────────────────────────── */
.sponsors-sect { background: white; text-align: center; padding: 72px 5%; }
.sponsor-strip { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 44px; }
.sponsor-box {
  padding: 18px 36px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.9rem; font-weight: 800; letter-spacing: 3px; color: #bbb; text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.sponsor-box:hover { color: var(--dark); border-color: var(--dark); }

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer { background: var(--dark); border-top: 3px solid var(--red); padding: 64px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.f-logo img,
.f-logo .custom-logo-link img { height: 40px; width: auto; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); }
.f-desc { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-bottom: 18px; }
.f-contact { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.f-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.f-contact a:hover { color: white; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 0.72rem; font-weight: 800;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.social-handle { font-size: 0.7rem; color: rgba(255,255,255,0.28); margin-top: 10px; }
.f-col h4 { font-size: 0.65rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.f-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.26); }

/* ── INNER PAGES ──────────────────────────────────────────── */
.page-hero {
  background: white; border-bottom: 1px solid var(--border);
  padding: 56px 5% 52px;
}
.page-hero-inner { max-width: 860px; }
.page-breadcrumb {
  font-size: 0.75rem; color: #aaa; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.page-breadcrumb a { color: var(--red); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.5px; color: var(--dark);
  line-height: 1.1;
}
.post-meta-hero { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.post-cat-badge { background: rgba(196,30,58,0.1); color: var(--red); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.post-date { font-size: 0.8rem; color: #aaa; font-weight: 600; }

.page-content-wrap { padding: 64px 5% 80px; }
.page-content-inner { max-width: 860px; margin: 0 auto; }
.single-post .page-content-inner { max-width: 780px; }

/* WordPress block editor content styles */
.entry-content {
  font-size: 1rem; line-height: 1.8; color: var(--body);
}
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-weight: 800; color: var(--dark); margin: 1.5em 0 0.6em; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.3px;
}
.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.2rem; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content a:hover { color: var(--orange); }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content img { border-radius: 8px; margin: 1.5em 0; }
.entry-content blockquote {
  border-left: 4px solid var(--red); padding: 12px 20px;
  background: var(--light); border-radius: 0 8px 8px 0;
  margin: 1.5em 0; font-style: italic; color: #555;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.9rem; }
.entry-content th { background: var(--red); color: white; padding: 10px 14px; text-align: left; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.75rem; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.entry-content tr:hover td { background: var(--light); }

/* Post nav */
.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--border); }
.post-nav-link { font-size: 0.82rem; font-weight: 700; color: var(--red); text-decoration: none; max-width: 45%; }
.post-nav-link:hover { text-decoration: underline; }
.back-to-news { display: inline-block; margin-top: 24px; font-size: 0.8rem; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.back-to-news:hover { text-decoration: underline; }

/* Archive pagination */
.archive-pagination { margin-top: 56px; text-align: center; }
.archive-pagination .nav-links { justify-content: center; gap: 8px; }
.archive-pagination a, .archive-pagination span {
  display: inline-block; padding: 8px 16px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  border: 1px solid var(--border); color: var(--body); transition: all 0.2s;
}
.archive-pagination a:hover, .archive-pagination .current {
  background: var(--red); color: white; border-color: var(--red);
}

/* ── INNER PAGE SHARED UTILITIES ─────────────────────────── */
.inner-sect { padding: 80px 5%; }
.inner-sect.bg-white { background: white; }
.inner-sect.bg-light  { background: var(--light); }
.inner-wrap { max-width: 1100px; margin: 0 auto; }
.inner-intro { font-size: 0.95rem; color: #777; line-height: 1.8; max-width: 680px; margin-bottom: 40px; }
.two-col-info { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.page-hero-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); background: rgba(196,30,58,0.08);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.page-hero-sub { font-size: 1rem; color: #777; margin-top: 12px; line-height: 1.7; max-width: 580px; }

/* INFO BAR */
.info-bar {
  background: var(--dark); display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.info-item {
  padding: 22px 24px; display: flex; align-items: flex-start; gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.08); color: white;
  font-size: 0.82rem; line-height: 1.5;
}
.info-item:last-child { border-right: none; }
.info-item strong { display: block; font-weight: 800; font-size: 0.82rem; margin-bottom: 2px; }
.info-item span  { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.info-item a { color: var(--orange); text-decoration: none; }
.info-item a:hover { text-decoration: underline; }

/* STEPS GRID */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 24px; position: relative;
}
.step-num {
  font-size: 3rem; font-weight: 900; color: rgba(196,30,58,0.12);
  line-height: 1; margin-bottom: 14px; display: block;
}
.step-card h3 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.step-card p  { font-size: 0.83rem; color: #777; line-height: 1.75; }

/* TRYOUT TABLE */
.tryout-table-wrap { overflow-x: auto; }
.tryout-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.tryout-table thead th { background: var(--red); color: white; padding: 13px 16px; text-align: left; font-weight: 700; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.tryout-table tbody td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--body); }
.tryout-table tbody tr:hover td { background: rgba(196,30,58,0.03); }
.tryout-table tbody tr:last-child td { border-bottom: none; }
.age-pill {
  display: inline-block; background: var(--red); color: white;
  font-size: 0.72rem; font-weight: 800; padding: 3px 10px; border-radius: 12px; letter-spacing: 1px;
}
.table-note { font-size: 0.8rem; color: #aaa; margin-top: 20px; line-height: 1.6; background: rgba(247,147,30,0.07); padding: 14px 18px; border-radius: 8px; border-left: 3px solid var(--orange); }

/* CHECKLIST */
.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.check-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 18px;
}
.check-icon { font-size: 1.4rem; flex-shrink: 0; }
.check-item strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.check-item p { font-size: 0.8rem; color: #888; line-height: 1.6; }

/* FEE CARDS */
.fee-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.fee-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 30px 24px;
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.fee-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.fee-card--highlight { background: white; border-color: var(--red); box-shadow: 0 4px 20px rgba(196,30,58,0.1); }
.fee-card-icon { font-size: 2rem; margin-bottom: 14px; }
.fee-card h3 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.fee-amount { font-size: 1.5rem; font-weight: 900; color: var(--red); margin-bottom: 12px; }
.fee-card p { font-size: 0.82rem; color: #777; line-height: 1.7; }

/* UNIFORM */
.uniform-includes { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; margin-bottom: 20px; }
.uniform-includes h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px; }
.uniform-includes ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.uniform-includes li { font-size: 0.85rem; color: var(--body); }
.uniform-notes { display: flex; flex-direction: column; gap: 10px; }
.note-item { font-size: 0.85rem; color: #666; display: flex; gap: 8px; align-items: flex-start; line-height: 1.6; }
.uniform-cta-box { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; text-align: center; }

/* FAQ */
.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 26px 24px; border-left: 4px solid var(--red); }
.faq-item h4 { font-size: 0.88rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.faq-item p { font-size: 0.83rem; color: #777; line-height: 1.75; }
.faq-item a { color: var(--red); text-decoration: underline; }

/* LEAGUE CARDS (Teams page) */
.league-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.league-card { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; text-align: center; }
.league-badge { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.72rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; line-height: 1.2; margin: 0 auto 16px; text-align: center; }
.league-card h3 { font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.league-card p { font-size: 0.82rem; color: #777; line-height: 1.7; }

/* DIVISION BLOCKS (Teams page) */
.division-block { margin-bottom: 48px; }
.division-block:last-child { margin-bottom: 0; }
.division-header { border-left: 5px solid var(--red); padding-left: 20px; margin-bottom: 24px; }
.division-name { font-size: 1.3rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.3px; }
.division-desc { font-size: 0.88rem; color: #777; line-height: 1.7; margin-top: 6px; }
.team-group-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-group-card {
  background: white; border: 1px solid var(--border); border-radius: 10px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-group-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.tg-hex { width: 48px; height: 48px; clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; color: white; }
.tg-age { font-size: 0.75rem; font-weight: 700; color: #999; letter-spacing: 1px; }
.tg-league { font-size: 0.72rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }
.tg-desc { font-size: 0.78rem; color: #888; line-height: 1.6; }
.tg-sched-link { font-size: 0.72rem; font-weight: 800; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
.tg-sched-link:hover { text-decoration: underline; }

/* PROGRAM CARDS */
.program-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.program-card { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; }
.prog-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.prog-badge { font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; background: rgba(196,30,58,0.1); color: var(--red); }
.prog-ages { font-size: 0.75rem; color: #aaa; font-weight: 600; letter-spacing: 1px; }
.program-card h3 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.3px; }
.program-card p { font-size: 0.88rem; color: #666; line-height: 1.8; margin-bottom: 20px; }
.prog-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.prog-features li { font-size: 0.83rem; color: var(--body); }
.prog-cta { display: inline-block; padding: 11px 24px; background: var(--red); color: white; font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 24px; transition: background 0.2s; }
.prog-cta:hover { background: var(--orange); }

/* SPECIALTY CARDS */
.specialty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.specialty-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; }
.spec-icon { font-size: 2.5rem; margin-bottom: 16px; }
.specialty-card h3 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.specialty-card p { font-size: 0.83rem; color: #777; line-height: 1.75; margin-bottom: 18px; }
.spec-link { font-size: 0.75rem; font-weight: 800; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.spec-link:hover { text-decoration: underline; }

/* TIMELINE */
.history-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.tl-year { font-size: 0.88rem; font-weight: 900; color: var(--red); min-width: 46px; padding-top: 2px; }
.tl-text { font-size: 0.85rem; color: #666; line-height: 1.65; }
.tl-text strong { color: var(--dark); }
.mission-quote-large { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.75; color: var(--dark); font-style: italic; position: relative; padding: 0 20px; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p { font-size: 0.83rem; color: #777; line-height: 1.7; }
.contact-item a { color: var(--red); }
.social-contact h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.social-btn-large { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(196,30,58,0.08); border: 1px solid rgba(196,30,58,0.2); border-radius: 8px; color: var(--red); text-decoration: none; font-size: 0.8rem; font-weight: 700; margin-right: 10px; transition: background 0.2s; }
.social-btn-large:hover { background: var(--red); color: white; }
.social-btn-large span { font-size: 0.72rem; font-weight: 900; background: var(--red); color: white; padding: 2px 6px; border-radius: 4px; }
.social-btn-large:hover span { background: white; color: var(--red); }

.contact-form-box { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; }
.contact-form-box h3 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.cfc-contact-form .form-group { margin-bottom: 20px; }
.cfc-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfc-contact-form label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
.cfc-contact-form input,
.cfc-contact-form select,
.cfc-contact-form textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; background: white; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--body); transition: border-color 0.2s; }
.cfc-contact-form input:focus,
.cfc-contact-form select:focus,
.cfc-contact-form textarea:focus { outline: none; border-color: var(--red); }
.cfc-contact-form textarea { resize: vertical; }

/* BOARD PLACEHOLDER */
.board-placeholder { background: rgba(247,147,30,0.07); border: 1px dashed rgba(247,147,30,0.4); border-radius: 8px; padding: 24px; font-size: 0.85rem; color: #888; line-height: 1.7; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 24px 5%; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-hamburger { display: flex; }

  #site-nav { position: sticky; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 360px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .mission-pillars { grid-template-columns: 1fr; }
  .actions-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-grid { grid-template-columns: 1fr; }
  .parents-grid { grid-template-columns: 1fr; }
  .news-grid, .archive-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tryouts-band, .apparel-band { flex-direction: column; text-align: center; }
}

  /* Inner pages mobile */
  .info-bar { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .fee-cards { grid-template-columns: 1fr 1fr; }
  .league-cards { grid-template-columns: 1fr 1fr; }
  .team-group-grid { grid-template-columns: repeat(2, 1fr); }
  .program-cards { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr 1fr; }
  .two-col-info { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cfc-contact-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .inner-sect { padding: 56px 5%; }
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .actions-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 20px; }
  .info-bar { grid-template-columns: 1fr; }
  .fee-cards { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .league-cards { grid-template-columns: 1fr; }
}
