/* ===========================================================
   Narrenzunft Zell am Harmersbach e.V. — Stylesheet
   =========================================================== */

:root {
  /* Farben – abgeleitet aus dem Vereinslogo (Banner-Lila & Seil-Gold) */
  --bg: #0d0912;
  --bg-alt: #150f1c;
  --card: #1c1524;
  --card-border: #2c2233;
  --purple: #9b2fae;
  --purple-deep: #591a66;
  --purple-glow: rgba(155, 47, 174, 0.35);
  --gold: #cda15a;
  --gold-light: #ecd19c;
  --text: #f4eee8;
  --text-muted: #b9aeb8;
  --text-faint: #7c7286;

  --font-display: "Cinzel", serif;
  --font-mark: "UnifrakturCook", cursive;
  --font-body: "Manrope", sans-serif;

  --radius: 14px;
  --max-width: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 40% at 15% -10%, var(--purple-glow), transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(205, 161, 90, 0.12), transparent 60%),
    var(--bg);
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mark);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--purple-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--purple-glow); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #221607;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(205,161,90,0.45); }
.btn-outline {
  background: transparent;
  border-color: var(--card-border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Header / Navigation ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 9, 18, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mark);
  font-size: 1.5rem;
  color: var(--text);
}
.brand img { height: 46px; width: auto; }
.brand span { line-height: 1.1; }
.brand small { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }

nav.main-nav { display: flex; align-items: center; gap: 6px; }
nav.main-nav a {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
nav.main-nav a.active { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-actions .btn { white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 1100px) {
  nav.main-nav { position: fixed; inset: 70px 0 0 0; background: var(--bg-alt); flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; transform: translateY(-110%); transition: transform 0.35s ease; border-top: 1px solid var(--card-border); }
  nav.main-nav.open { transform: translateY(0); }
  nav.main-nav a { padding: 16px; font-size: 1.05rem; text-align: center; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--card-border); background: transparent; color: var(--text); font-size: 1.3rem; cursor: pointer; }
  .nav-actions .btn span.long { display: none; }
}

/* ---------- Ribbon / Signature element ---------- */
.ribbon-badge {
  position: relative;
  display: inline-block;
  padding: 10px 34px;
  color: var(--gold-light);
  font-family: var(--font-mark);
  font-size: 1.3rem;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}
.ribbon-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }

.divider-ribbon { display: flex; align-items: center; justify-content: center; margin: 64px 0 40px; gap: 18px; }
.divider-ribbon::before, .divider-ribbon::after { content: ""; flex: 1; max-width: 160px; height: 1px; background: linear-gradient(90deg, transparent, var(--card-border)); }
.divider-ribbon::after { background: linear-gradient(90deg, var(--card-border), transparent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 40px;
  text-align: center;
}
.hero-figures {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}
.hero-figures img {
  position: absolute;
  width: 240px;
  filter: grayscale(0.15) contrast(1.1);
}
.hero-figures .figure-wrap {
  position: absolute;
  width: 240px;
  will-change: transform;
}
.hero-figures .figure-wrap img {
  position: static;
  width: 100%;
  display: block;
  filter: grayscale(0.15) contrast(1.1);
  animation: figureSway var(--sway-duration, 8s) ease-in-out infinite;
  animation-delay: var(--sway-delay, 0s);
  transform-origin: 50% 85%;
}
@keyframes figureSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.4deg); }
}

.countdown-panel {
  max-width: 720px;
  margin: 8px auto 48px;
  padding: 26px 30px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.countdown-panel .cd-label {
  font-family: var(--font-mark);
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cd-unit { background: var(--bg-alt); border: 1px solid var(--card-border); border-radius: 10px; padding: 14px 6px; }
.cd-unit .num { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--text); font-variant-numeric: tabular-nums; }
.cd-unit .lbl { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }
.cd-date { margin-top: 14px; font-size: 0.85rem; color: var(--text-faint); }

/* ---------- Sections / Cards ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }

.grid { display: grid; gap: 26px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

a.card { display: block; }
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.card:hover { transform: translateY(-6px); border-color: var(--purple); }

.figure-card { text-align: center; }
.figure-card .figure-img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-alt); }
.figure-card .figure-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.figure-card .figure-body { padding: 20px; }
.figure-card h3 { font-family: var(--font-mark); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 6px; }

.gemeinschaft-card { padding: 26px; }
.gemeinschaft-card .icon-mark { font-family: var(--font-mark); font-size: 2rem; color: var(--purple); margin-bottom: 10px; display: block; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 1; background: var(--card); cursor: pointer; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure.is-hidden { display: none; }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 10px 8px; font-size: 0.78rem; line-height: 1.3; color: var(--text);
  background: linear-gradient(to top, rgba(8,5,10,0.88), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gallery-grid figure:hover figcaption, .gallery-grid figure:focus-within figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }
.gallery-filters button {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--card-border);
  background: transparent; color: var(--text-muted); font-weight: 600; font-size: 0.88rem;
  font-family: var(--font-body); cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-filters button:hover { border-color: var(--purple); color: var(--text); }
.gallery-filters button.active { background: var(--purple); border-color: var(--purple); color: #fff; }

.lightbox { position: fixed; inset: 0; background: rgba(8,5,10,0.92); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 40px; flex-direction: column; gap: 14px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 8px; }
.lightbox-caption { color: var(--text-muted); font-size: 0.95rem; text-align: center; max-width: 90vw; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; color: var(--text); cursor: pointer; background: none; border: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
footer.site-footer { border-top: 1px solid var(--card-border); padding: 48px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { font-size: 0.95rem; color: var(--gold-light); }
.footer-grid a, .footer-grid p { font-size: 0.92rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--card-border); font-size: 0.8rem; color: var(--text-faint); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page header (Unterseiten) ---------- */
.page-hero { padding: 56px 0 36px; text-align: center; }
.page-hero p.lead { max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { padding: 30px; }
.contact-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-card li { display: flex; gap: 12px; align-items: flex-start; }
.contact-card .ic { color: var(--gold); font-family: var(--font-display); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
form.contact-form input, form.contact-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
form.contact-form input:focus, form.contact-form textarea:focus { outline: 2px solid var(--purple); outline-offset: 2px; }
form.contact-form label { font-size: 0.85rem; color: var(--text-faint); margin-bottom: -8px; }

/* ---------- Fasendsgemeinschaft Profil-Layout ---------- */
.profile-grid { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: stretch; margin-bottom: 56px; }
.profile-photo { border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); aspect-ratio: 4/5; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-facts { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.profile-facts .lead-line { font-size: 1.08rem; color: var(--text); margin: 0; }
.fact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.fact-list li { display: flex; gap: 14px; align-items: baseline; }
.fact-list .fact-label { font-family: var(--font-mark); color: var(--gold-light); font-size: 1.1rem; min-width: 130px; flex-shrink: 0; }
.fact-list .fact-value { color: var(--text-muted); margin: 0; }
.story-text { max-width: 720px; margin: 0 auto 50px; }
.story-text p { margin-bottom: 1.1em; }
@media (max-width: 760px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo { aspect-ratio: 16/10; }
}

/* ---------- Fasendsgemeinschaft Logos (einheitlich) ---------- */
.gem-hero-logo { width: 90px; height: 90px; object-fit: contain; background: #fff; border-radius: 14px; padding: 6px; border: 1px solid var(--card-border); }
.gem-badge-logo, .figure-card .figure-img img.gem-badge-logo { position: absolute; bottom: 10px; right: 10px; width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; object-fit: contain; padding: 4px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile-Optimierung (Smartphones) ---------- */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  section { padding: 44px 0; }
  .hero { padding: 44px 0 28px; }
  .page-hero { padding: 40px 0 24px; }

  .nav-wrap { padding: 12px 16px; }
  .brand { font-size: 1.15rem; gap: 8px; }
  .brand img { height: 38px; }
  .brand small { font-size: 0.52rem; }
  .nav-actions .btn { padding: 10px 16px; font-size: 0.85rem; }

  .hero-figures img,
  .hero-figures .figure-wrap { width: 120px; }
  .hero-figures { opacity: 0.22; }

  .countdown-panel { padding: 18px 16px; margin: 8px auto 32px; }
  .countdown-grid { gap: 6px; }
  .cd-unit { padding: 10px 4px; }

  .divider-ribbon { margin: 40px 0 28px; gap: 10px; }
  .divider-ribbon::before, .divider-ribbon::after { max-width: 60px; }

  .cta-band { padding: 36px 22px; border-radius: 16px; }

  .profile-facts { padding: 22px; }
  .fact-list li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .fact-list .fact-label { min-width: 0; }

  .btn { padding: 12px 22px; font-size: 0.9rem; }

  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  .gem-hero-logo { width: 70px; height: 70px; }
}

@media (max-width: 380px) {
  .hero-figures { display: none; }
}

/* Versetztes Erscheinen (unterschiedliche Timeframes) für Kachel-Reihen */
.grid-4 .reveal:nth-child(1) { transition-delay: 0s; }
.grid-4 .reveal:nth-child(2) { transition-delay: 0.12s; }
.grid-4 .reveal:nth-child(3) { transition-delay: 0.24s; }
.grid-4 .reveal:nth-child(4) { transition-delay: 0.36s; }


/* ---------- Chronik-Zeitleiste ---------- */
.timeline { max-width: 780px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--card-border); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-light); white-space: nowrap; }
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.timeline-item p { margin: 0; }
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
}

/* ---------- Dropdown-Navigation "Verein" ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 16px; font-size: 0.92rem; font-weight: 600;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  border-radius: 999px; font-family: var(--font-body); transition: color 0.2s ease, background 0.2s ease;
}
.nav-dropdown > .dropdown-toggle:hover,
.nav-dropdown:focus-within > .dropdown-toggle { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-dropdown > .dropdown-toggle.active { color: var(--gold-light); }
.nav-dropdown .caret { font-size: 0.65em; transition: transform 0.2s ease; }
.nav-dropdown:hover .caret, .nav-dropdown:focus-within .caret, .nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none; flex-direction: column; gap: 2px;
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--bg-alt); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 8px; box-shadow: 0 20px 45px -12px rgba(0,0,0,0.6); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 14px; border-radius: 8px; font-size: 0.92rem; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.nav-dropdown-menu a.active { color: var(--gold-light); }

@media (max-width: 1100px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .dropdown-toggle {
    width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem;
    color: var(--text-faint); cursor: default;
  }
  .nav-dropdown-menu {
    display: flex; position: static; box-shadow: none; border: none;
    background: none; padding: 0 0 6px; min-width: 0;
  }
  .nav-dropdown-menu a { text-align: center; padding: 14px; font-size: 1rem; }
}

/* ---------- Social Media Icons ---------- */
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--card-border);
  color: var(--text-muted); transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover { background: var(--purple); border-color: var(--purple); color: #fff; transform: translateY(-2px); }
.social-icons svg { width: 18px; height: 18px; fill: currentColor; }

.hero-social { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 22px 0 6px; }
.hero-social span { font-size: 0.85rem; color: var(--text-faint); }

/* ---------- Narrenmarsch / Liedseite ---------- */
.songsheet { max-width: 640px; margin: 0 auto; }
.note-divider { text-align: center; color: var(--gold); font-size: 1.5rem; letter-spacing: 14px; margin: 8px 0 34px; opacity: 0.85; }
.songsheet .verse { text-align: center; margin-bottom: 8px; }
.songsheet .verse-label { font-family: var(--font-mark); color: var(--gold-light); font-size: 1.4rem; display: block; margin-bottom: 16px; }
.songsheet .verse p { line-height: 2; color: var(--text); font-size: 1.08rem; margin: 0; }
.songsheet .refrain {
  background: linear-gradient(135deg, var(--purple-deep), var(--card));
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px 26px; margin: 34px 0; text-align: center;
  box-shadow: 0 20px 45px -18px rgba(0,0,0,0.6);
}
.songsheet .refrain .verse-label { color: var(--gold-light); }
.songsheet .refrain p { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.9; color: #fff; margin: 0; }

.march-hero-notes { display: flex; justify-content: center; gap: 18px; font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; opacity: 0.9; }
