/* ============================================================
   VielHarmonie – Öffentliche Webseite – style.css
   Design: abgestimmt auf chor-noten internes System
   Farben: #2B3080 (Blau), #F0921C (Orange)
   ============================================================ */

:root {
  --primary:       #2B3080;
  --primary-light: #3d4499;
  --primary-dark:  #1e2260;
  --accent:        #F0921C;
  --accent-hover:  #d47c10;
  --bg:            #f4f5f9;
  --card-bg:       #ffffff;
  --text:          #1f2937;
  --text-light:    #374151;
  --muted:         #6b7280;
  --border:        #e5e7eb;
  --white:         #ffffff;
  --shadow:        0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.12);
  --radius:        8px;
  --radius-sm:     4px;
  --transition:    0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== NAVIGATION ===== */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
}

.nav-logo-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-sub {
  display: block;
  font-size: 0.68rem;
  opacity: 0.7;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.7rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.nav-intern a {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 0.5rem;
}

.nav-intern a:hover {
  background: var(--accent-hover) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #3d4499 100%);
  color: var(--white);
  padding: 5.5rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(240,146,28,0.2);
  border: 1px solid rgba(240,146,28,0.4);
  color: #fcd093;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,146,28,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-alt { background: var(--white); }

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 0.975rem;
  max-width: 560px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-header a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}
.section-header a:hover { text-decoration: underline; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-body { padding: 1.5rem; }

/* ===== EVENT CARDS ===== */
.event-list { display: flex; flex-direction: column; gap: 1rem; }

.event-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.event-date-box {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  text-align: center;
  flex-shrink: 0;
}
.event-date-box.accent { background: var(--accent); }

.event-day {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.event-year {
  font-size: 0.65rem;
  opacity: 0.65;
  margin-top: 0.1rem;
}

.event-body {
  padding: 0.9rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.975rem;
  margin-bottom: 0.3rem;
}
.event-meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.feature-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}
.feature-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.feature-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.feature-text { font-size: 0.8rem; color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.5rem;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  opacity: 0.88;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== INTERN BANNER ===== */
.intern-banner {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}
.intern-banner-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.intern-banner-text h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.intern-banner-text p {
  color: var(--muted);
  font-size: 0.875rem;
}
.intern-banner a { margin-left: auto; flex-shrink: 0; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3rem 1.5rem 2.5rem;
}
.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.page-header p {
  opacity: 0.8;
  font-size: 0.975rem;
}

/* ===== PROSE TEXT ===== */
.prose h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.prose h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 1.25rem 0 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}
.prose ul, .prose ol {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-light);
  line-height: 1.75;
}
.prose li { margin-bottom: 0.35rem; }
.prose a { color: var(--primary); }
.prose a:hover { color: var(--accent); }

/* ===== INFO CARDS ===== */
.info-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}
.info-card.accent-border { border-left-color: var(--accent); }
.info-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  align-items: flex-start;
  color: var(--text-light);
}
.info-icon {
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
  margin-top: 0.05rem;
}

/* ===== CONDUCTOR CARD ===== */
.conductor-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-top: 4px solid var(--accent);
}
.conductor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.conductor-info h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.conductor-role {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.conductor-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== TIMELINE (Auftritte) ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== REPERTOIRE ===== */
.repertoire-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.rep-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border-top: 3px solid var(--primary);
}
.rep-card.accent-top { border-top-color: var(--accent); }
.rep-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.rep-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.rep-list {
  list-style: none;
  color: var(--text-light);
  font-size: 0.875rem;
}
.rep-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rep-list li:last-child { border-bottom: none; }
.rep-list li::before { content: '♪'; color: var(--accent); font-size: 0.75rem; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: var(--white);
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-placeholder {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  color: var(--muted);
}
.gallery-placeholder .ph-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 0;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo img {
  height: 38px;
  width: auto;
  border-radius: 4px;
  background: var(--white);
  padding: 2px;
  object-fit: contain;
}
.footer-logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.footer-logo-sub { display: block; font-size: 0.68rem; opacity: 0.6; font-weight: 400; }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 1.25rem; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--muted); font-size: 0.875rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-primary { background: rgba(43,48,128,0.1); color: var(--primary); }
.badge-accent { background: rgba(240,146,28,0.15); color: var(--accent-hover); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 0.75rem;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { padding: 0.6rem 1rem; width: 100%; }
  .nav-intern { margin-left: 0 !important; }
  .nav-intern a { margin-left: 0 !important; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-child(2) { border-bottom: none; }

  .grid-2, .grid-3, .gallery-grid, .repertoire-categories { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }

  .hero::after { height: 30px; }
  .hero { padding: 3.5rem 1.5rem 3.5rem; }

  .conductor-card { flex-direction: column; }

  .intern-banner { flex-direction: column; text-align: center; }
  .intern-banner a { margin-left: 0; width: 100%; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.4rem; }
  .hero h1 { font-size: 1.75rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .event-card { flex-direction: column; }
  .event-date-box {
    flex-direction: row;
    min-width: unset;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
  }
  .event-day { font-size: 1.3rem; }
}
