/* Bull Moose Club DSM — homepage story sections. Builds on /styles.css palette. */

.hero-light { background: var(--cream); text-align: center; padding: 40px 16px 52px; border-bottom: 4px solid var(--red); }
.hero-logo { width: 160px; height: auto; margin: 0 auto 10px; display: block; }
.hero-clubname { font-weight: 800; color: var(--navy); font-size: 1.55rem; margin: 0 0 12px; }
.eyebrow-dark { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--red-dark); font-weight: 700; margin: 0 0 12px; }
.hero-light h1 { font-size: 2.05rem; color: var(--navy); margin: 0 0 14px; line-height: 1.12; }
.lede-dark { color: #33404f; font-size: 1.06rem; max-width: 46ch; margin: 0 auto 22px; }

.section-intro { color: var(--muted); max-width: 54ch; margin: 0 0 26px; font-size: 1.05rem; }
.section-note { color: var(--muted); font-size: .85rem; margin-top: 18px; }

/* Dramatic navy history section */
.section-navy { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; max-width: none; }
.section-navy > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section-navy h2 { color: #fff; }
.section-navy .section-intro { color: #cdd8e8; }
.section-navy .section-note { color: #9fb0c4; }
.subhead { color: #9ec1ef; margin: 34px 0 16px; font-size: 1.2rem; }

.section-cream { background: var(--tint); max-width: none; }
.section-cream > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }

/* Age cards */
.age-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.age-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 16px; }
.age-card .age { font-size: 2.7rem; font-weight: 800; color: #9ec1ef; line-height: 1; }
.age-name { font-weight: 700; margin-top: 6px; }
.age-what { color: #c3d0e2; font-size: .88rem; margin-top: 4px; }
.age-card.alt .age { color: #ff6b74; }

/* Stat cards */
.stat-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.stat-card { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: 12px; padding: 18px; }
.stat-num { font-size: 2.3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { color: #33404f; font-size: .92rem; margin-top: 8px; }
.stat-src { color: var(--muted); font-size: .72rem; margin-top: 8px; text-transform: uppercase; letter-spacing: .04em; }

@media (min-width: 680px) {
  .hero-logo { width: 210px; }
  .hero-clubname { font-size: 1.95rem; }
  .hero-light h1 { font-size: 3.1rem; }
  .age-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Epic photo rotation band */
.gallery { position: relative; height: 52vh; min-height: 320px; max-height: 560px; overflow: hidden; background: var(--navy-deep); }
.gallery-stage { position: absolute; inset: 0; }
.gallery-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.gallery-stage img.active { opacity: 1; animation: kenburns 12s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 16px 26px; background: linear-gradient(transparent, rgba(7,17,29,.88)); color: #fff; text-align: center; }
.gallery-cap span { font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; }
@media (min-width: 680px) { .gallery-cap span { font-size: 2rem; } }

/* Public events */
.events-public { display: grid; gap: 14px; }
.event-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.event-date { flex: 0 0 62px; text-align: center; background: var(--navy); color: #fff; border-radius: 10px; padding: 10px 0; height: fit-content; }
.ed-mo { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.ed-day { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1.1; }
.event-body h3 { margin: 0 0 4px; color: var(--navy); }
.event-when { color: var(--muted); font-size: .9rem; margin: 0 0 8px; }
.event-desc { margin: 0 0 12px; color: #33404f; }
.btn-cal { padding: 10px 16px; font-size: .9rem; }
