/* style.css — GEHS Choral public pages (white / green / gold) */
:root {
  --green:  #1a6b2a;
  --green2: #145220;
  --gold:   #b8920a;
  --gold2:  #96780a;
  --text:   #1a1a1a;
  --muted:  #555;
  --bg:     #f7faf7;
  --white:  #ffffff;
  --border: #d4e8d4;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── Nav ── */
nav.site-nav {
  background: var(--green);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.nav-brand {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 0;
  white-space: nowrap;
}
.nav-brand span { color: var(--gold); }
nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 8px 0;
}
nav.site-nav ul li a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background .14s, color .14s;
  display: block;
}
nav.site-nav ul li a:hover,
nav.site-nav ul li a.active { background: rgba(255,255,255,0.12); color: #fff; }
.nav-signin {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 6px;
}
.nav-signin:hover { background: var(--gold2) !important; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, #2a8c3a 60%, #1a5020 100%);
  color: #fff;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🎵';
  position: absolute;
  font-size: 180px;
  opacity: 0.06;
  top: -20px; left: -20px;
  line-height: 1;
}
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; }
.hero h1 span { color: #ffd740; }
.hero p { margin-top: 14px; font-size: 1.08rem; opacity: 0.88; max-width: 600px; margin-inline: auto; }
.hero-actions { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px;
  background: var(--gold); color: #fff;
  font-size: 0.96rem; font-weight: 700; text-decoration: none;
  transition: background .14s, transform .1s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px;
  background: transparent; color: #fff;
  font-size: 0.96rem; font-weight: 700; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background .14s, border-color .14s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Sections ── */
.section { padding: 60px 24px; }
.section.alt { background: #fff; }
.wrap { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: 1.6rem; font-weight: 800; color: var(--green);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.section-sub { color: var(--muted); margin-bottom: 32px; font-size: 0.96rem; }
.section-title::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--gold); border-radius: 2px; margin-top: 8px;
}

/* ── Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform .14s, box-shadow .14s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── Schedule table ── */
.schedule-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.schedule-table thead th {
  background: var(--green); color: #fff;
  padding: 10px 14px; text-align: left; font-weight: 600;
}
.schedule-table tbody tr { border-bottom: 1px solid var(--border); }
.schedule-table tbody tr:hover { background: #f0f8f0; }
.schedule-table td { padding: 10px 14px; vertical-align: top; }
.event-type {
  display: inline-block; padding: 2px 10px; border-radius: 12px;
  font-size: 0.78rem; font-weight: 700;
}
.type-concert  { background: #e8f5e0; color: #1a6b2a; }
.type-rehearsal{ background: #fff8e0; color: #7a5c00; }
.type-audition { background: #e8e0ff; color: #3a1a8c; }
.type-other    { background: #f0f0f0; color: #555; }

/* ── About layout ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-text p { line-height: 1.75; color: var(--muted); margin-bottom: 14px; }
.about-text h3 { color: var(--green); margin-bottom: 8px; font-size: 1.1rem; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat-card {
  background: var(--green); color: #fff;
  border-radius: 12px; padding: 20px; text-align: center;
}
.stat-card .num { font-size: 2rem; font-weight: 800; }
.stat-card .lbl { font-size: 0.82rem; opacity: 0.85; margin-top: 4px; }

/* ── Footer ── */
footer.site-footer {
  background: var(--green2);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.84rem;
}
footer.site-footer a { color: #ffd740; text-decoration: none; }

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 16px 40px; }
}
