/* ── Container ─────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ─────────────────────────── */
section {
  padding: 80px 0;
  position: relative;
}

/* ── Hero ─────────────────────────── */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(77,195,56,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bunting {
  max-width: 800px;
  margin: 0 auto 28px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.hero h1 .pta { color: var(--green); }

.hero .tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--flag-coral);
  margin-bottom: 16px;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Episodes Section ─────────────────────────── */
.episodes { background: var(--cream); }

/* ── Fundraising Section ─────────────────────────── */
.fundraising { background: var(--warm-white); }

/* ── PTA Game Section ─────────────────────────── */
.pta-game {
  background: var(--cream);
  text-align: center;
}

/* ── Book Club Section ─────────────────────────── */
.book-club { background: var(--warm-white); }

/* ── Resources Section ─────────────────────────── */
.resources { background: var(--cream); }

/* ── About Section ─────────────────────────── */
.about { background: var(--warm-white); }

/* ── Contact Section ─────────────────────────── */
.contact { background: var(--cream); }

/* ── Page Header (used on sub-pages) ──────────── */
.page-header {
  padding: 120px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 8px;
}

.page-header .page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Player body offset ─────────────────── */
body.player-active {
  padding-bottom: 72px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.5rem; }
  .hero .tagline { font-size: 1.1rem; }
  .section-header h2 { font-size: 2rem; }

  .episodes-grid { grid-template-columns: 1fr; }
  .ideas-grid { grid-template-columns: 1fr 1fr; }

  .newsletter-form { flex-direction: column; }
  .about-content { grid-template-columns: 1fr; text-align: center; }
  .about-photo { margin: 0 auto; width: 220px; height: 260px; font-size: 4rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr; }
  .section-bunting { width: 240px; }

  .page-header { padding: 100px 0 32px; }
  .page-header h1 { font-size: 2.2rem; }

  .podsearch { padding: 60px 0; }
  .podsearch-episode-header {
    flex-direction: column;
    gap: 2px;
  }
  #podsearch-results { margin-top: 24px; }
  .podsearch-result { padding: 14px 16px; }
}

@media (max-width: 480px) {
  .ideas-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .game-card { padding: 32px 24px; }
}

/* ── Player bar responsive ───────────────── */
@media (max-width: 768px) {
  .player-inner { gap: 10px; height: 56px; }
  .player-time { display: none; }
  .player-info { max-width: 120px; }
  .player-play-btn { width: 36px; height: 36px; }
  .player-play-btn svg { width: 18px; height: 18px; }
  body.player-active { padding-bottom: 64px; }
}
