@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3183BF;
  --blue-dark: #1f5f91;
  --blue-light: #e8f2fa;
  --gold: #c9a84c;
  --text: #333;
  --muted: #666;
  --border: #ddd;
  --white: #fff;
  --bg: #f8f9fa;
  --sidebar-w: 180px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Row 1: logo */
.header-logo-row {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 24px;
}
.logo-block { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-block img { height: 52px; width: auto; }
.logo-text h1 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--blue); line-height: 1.2; }
.logo-text p  { font-size: .72rem; color: var(--muted); letter-spacing: .03em; margin-top: 2px; }

/* Row 2: horizontal nav strip */
.nav-strip {
  background: var(--blue);
  display: flex; align-items: stretch;
}
.nav-strip-inner {
  max-width: 1280px; margin: 0 auto; flex: 1;
  display: flex; flex-wrap: wrap;
}
.nav-strip-inner a {
  color: rgba(255,255,255,.88);
  font-size: .8rem; font-weight: 600;
  text-decoration: none;
  padding: 10px 13px;
  border-right: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
  transition: background .15s, color .15s;
  display: flex; align-items: center;
}
.nav-strip-inner a:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.nav-strip-inner a:hover  { background: rgba(255,255,255,.15); color: #fff; }
.nav-strip-inner a.active { background: rgba(0,0,0,.2); color: #fff; }

/* mobile hamburger for nav strip */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: #fff; font-size: 1.4rem; padding: 10px 16px;
}

/* ── PAGE BODY (sidebar + main) ── */
.page-body {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── SIDEBAR ── */
.sidebar-nav {
  width: var(--sidebar-w);
  flex-shrink: 0;
  padding: 28px 0;
  border-right: 1px solid var(--border);
  background: var(--bg);
}
.sidebar-heading {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  padding: 0 16px 10px;
}
.sidebar-nav nav a {
  display: block;
  padding: 8px 16px;
  font-size: .83rem; font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.sidebar-nav nav a:hover  { color: var(--blue); background: var(--blue-light); border-left-color: var(--blue); }
.sidebar-nav nav a.active { color: var(--blue); background: var(--blue-light); border-left-color: var(--blue); }

/* ── MAIN CONTENT AREA ── */
.page-body main { flex: 1; min-width: 0; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  height: 300px; background: var(--blue-dark);
}
.hero img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-caption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; padding: 0 24px;
}
.hero-caption h2 { font-family: 'Playfair Display', serif; font-size: 2rem; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-caption p  { font-size: .95rem; margin-top: 8px; opacity: .9; }

/* ── SECTIONS ── */
.section { padding: 48px 32px; }
.section.alt { background: var(--bg); }
.container { max-width: 900px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--blue);
  margin-bottom: 24px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
}

/* ── HOME NEWS CARDS ── */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 8px;
}
.news-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 22px; box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.news-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--blue); margin-bottom: 10px; }
.news-card p  { font-size: .88rem; line-height: 1.7; color: var(--text); }
.news-card a:not(.btn):not(.social-btn) { color: var(--blue); }

.news-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* ── TRIBUTE BANNER ── */
.tribute {
  background: var(--blue-light); border-left: 4px solid var(--blue);
  border-radius: 6px; padding: 20px 24px; margin-bottom: 28px;
  display: flex; align-items: flex-start; gap: 20px;
}
.tribute img { width: 110px; height: auto; border-radius: 4px; flex-shrink: 0; }
.tribute-text h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 8px; }
.tribute-text p { font-size: .88rem; line-height: 1.7; }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.two-col.wide { grid-template-columns: 2fr 1fr; }

/* ── MISSION BOX ── */
.mission-box {
  background: var(--blue); color: var(--white); border-radius: 8px;
  padding: 24px; font-size: .93rem; line-height: 1.75;
}
.mission-box h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; }

/* ── CONDUCTOR CARDS ── */
.conductor-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px; box-shadow: 0 2px 6px rgba(0,0,0,.04); margin-bottom: 20px;
}
.conductor-card img { width: 130px; height: 160px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.conductor-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--blue); margin-bottom: 8px; }
.conductor-card p  { font-size: .88rem; line-height: 1.75; }
.conductor-card a  { color: var(--blue); }

/* ── SEASON ── */
.season-block { margin-bottom: 36px; }
.season-block h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--blue-dark); margin-bottom: 12px; }
.program-list { list-style: none; padding: 0; }
.program-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .93rem;
}
.program-list li::before { content: "♩"; color: var(--blue); flex-shrink: 0; }
.concert-date {
  background: var(--blue-light); border-radius: 6px;
  padding: 12px 18px; margin-bottom: 10px; font-size: .88rem;
}
.concert-date strong { display: block; color: var(--blue); font-size: .95rem; }

/* ── MEDIA GRID ── */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.media-item { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.media-item-thumb {
  background: var(--blue-dark); height: 150px;
  display: flex; align-items: center; justify-content: center;
}
.media-item-thumb a { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white); text-decoration: none; }
.play-icon { font-size: 2.6rem; }
.media-item-info { padding: 14px; }
.media-item-info h4 { font-size: .88rem; font-weight: 600; margin-bottom: 4px; }
.media-item-info p { font-size: .78rem; color: var(--muted); }

/* ── DONATE TIERS ── */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 8px; }
.tier-card { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.tier-header { padding: 18px 20px; color: #fff; }
.tier-header .amount { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; }
.tier-header .name   { font-size: .82rem; opacity: .9; margin-top: 4px; }
.tier-body { background: #fff; border: 1px solid var(--border); border-top: none; padding: 18px 20px; }
.tier-body ul { list-style: none; padding: 0; }
.tier-body ul li { padding: 6px 0; font-size: .85rem; border-bottom: 1px solid var(--border); }
.tier-body ul li:last-child { border: none; }
.tier-body ul li::before { content: "✓ "; color: var(--blue); font-weight: 700; }
.tier-body .donate-btn { margin-top: 14px; }
.gold-tier   .tier-header { background: #b8860b; }
.silver-tier .tier-header { background: #888; }
.purple-tier .tier-header { background: #6b21a8; }
.friend-tier .tier-header { background: var(--blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 8px 18px; border-radius: 4px;
  background: var(--blue); color: var(--white); text-decoration: none;
  font-size: .83rem; font-weight: 600; transition: background .2s; border: none; cursor: pointer;
}
.btn:hover { background: var(--blue-dark); }
.btn.gold { background: var(--gold); }
.btn.gold:hover { background: #a8882e; }
.btn.outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn.outline:hover { background: var(--blue); color: var(--white); }

/* ── JOIN STEPS ── */
.join-steps { counter-reset: step; list-style: none; padding: 0; }
.join-steps li { counter-increment: step; display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.join-steps li::before {
  content: counter(step); background: var(--blue); color: #fff;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.join-steps li p { font-size: .93rem; line-height: 1.7; }

/* ── CONTACT / INFO BOX ── */
.contact-box {
  background: var(--blue-light); border-radius: 8px;
  padding: 22px; margin-top: 28px; font-size: .88rem; line-height: 1.8;
}
.contact-box h3 { font-family: 'Playfair Display', serif; color: var(--blue); margin-bottom: 10px; }
.contact-box a:not(.social-btn) { color: var(--blue); font-weight: 600; }

/* ── SOCIAL ── */
.social-bar { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 4px; text-decoration: none;
  font-size: .82rem; font-weight: 600; color: #fff;
}
.social-btn.yt { background: #c4302b; }
.social-btn.fb { background: #1877f2; }
.social-btn:hover { opacity: .85; }

/* ── ADVERTISE ── */
.ad-box { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.ad-box h3 { font-family: 'Playfair Display', serif; color: var(--blue); margin-bottom: 10px; }
.ad-box .price { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.ad-box p { font-size: .88rem; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--blue-dark); color: rgba(255,255,255,.8);
  text-align: center; padding: 24px; font-size: .8rem;
}
footer a { color: rgba(255,255,255,.9); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-strip-inner { display: none; flex-direction: column; width: 100%; }
  .nav-strip-inner.open { display: flex; }
  .nav-strip-inner a { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-toggle { display: block; }

  .page-body { flex-direction: column; }
  .sidebar-nav { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .sidebar-nav nav { display: flex; flex-wrap: wrap; padding: 0 12px; gap: 4px; }
  .sidebar-nav nav a { border-left: none; border-radius: 4px; padding: 6px 10px; }

  .two-col, .two-col.wide { grid-template-columns: 1fr; }
  .conductor-card { flex-direction: column; }
  .conductor-card img { width: 100%; height: 200px; }
  .hero { height: 200px; }
  .hero-caption h2 { font-size: 1.4rem; }
  .tribute { flex-direction: column; }
  .section { padding: 32px 20px; }
}
