/* ============================================================
   Du fehlst – Stylesheet
   ============================================================ */

/* ===== LOKALE SCHRIFTEN (Open Sans) ===== */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/opensans-light.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/opensans-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/opensans-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/opensans-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/opensans-bold.woff2') format('woff2');
}

/* ===== LOKALE SCHRIFTEN (Caveat) ===== */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/caveat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/caveat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== VARIABLEN ===== */
:root {
  --bg:           #0c1a28;
  --bg-section:   #0e1f30;
  --gold:         #c9a84c;
  --gold-light:   #e8c870;
  --gold-dim:     rgba(201, 168, 76, 0.25);
  --white:        #ffffff;
  --text:         rgba(255, 255, 255, 0.92);
  --text-muted:   rgba(255, 255, 255, 0.58);
  --border:       rgba(201, 168, 76, 0.22);
  --sans:         'Open Sans', sans-serif;
  --serif-italic: 'Caveat', cursive;
  --max-w:        1100px;
  --radius:       8px;
  --nav-h:        70px;
  --tr:           0.28s ease;
}

/* ===== RESET & BASIS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gold-light); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 3px; }

/* ===== HILFSELEMENTE ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-family: var(--serif-italic);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}

/* Trennlinie mit Herz */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.25rem auto;
  max-width: 240px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-heart {
  display: flex;
  align-items: center;
}
.divider-heart svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 22, 34, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-brand { 
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  transition: color var(--tr);
  text-decoration: none;
}

.nav-brand:hover { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--tr);
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--tr);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0c1a28;
  background-image: url('../images/laterne_bg.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Unten abdunkeln für Textlesbarkeit */
    linear-gradient(to bottom,
      transparent 0%,
      transparent 40%,
      rgba(12, 26, 40, 0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.5rem 1.75rem 5rem;
  max-width: 960px;
  width: 100%;
}

.hero__logo {
  width: min(620px, 90vw);
  margin: 0 auto 3rem;
  filter: drop-shadow(0 4px 32px rgba(201, 168, 76, 0.50));
  animation: heroFadeIn 1.1s ease both;
}

.hero__subtitle {
  font-size: clamp(0.78rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(12, 26, 40, 0.8);
  animation: heroFadeIn 1.1s ease 0.2s both;
}

.hero__tagline {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 3.0vw, 2.0rem);
  color: var(--white);
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(12, 26, 40, 0.9), 0 1px 4px rgba(12, 26, 40, 0.7);
  animation: heroFadeIn 1.1s ease 0.35s both;
}

.hero__place-label {
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 0.45rem;
  animation: heroFadeIn 1.1s ease 0.5s both;
}

.hero__place-text {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 12px rgba(12, 26, 40, 0.85);
  animation: heroFadeIn 1.1s ease 0.55s both;
}

/* Event Meta – 2-Spalten wie Flyer */
.event-meta {
  display: grid;
  grid-template-columns: max-content 1px max-content;
  column-gap: 1.75rem;
  row-gap: 2rem;
  justify-items: start;
  width: fit-content;
  margin: 3rem auto 0;
  position: relative;
  animation: heroFadeIn 1.1s ease 0.7s both;
}

/* Vertikale Trennlinie (echtes Grid-Element) */
.meta-sep {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  width: 1px;
  background: rgba(201, 168, 76, 0.3);
}

/* Datum – links oben */
.meta-item:nth-child(1) { grid-column: 1; grid-row: 1; }

/* Uhrzeit – links unten (child 3 nach dem Separator) */
.meta-item:nth-child(3) { grid-column: 1; grid-row: 2; }

/* Ort – rechts, beide Zeilen */
.meta-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.meta-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meta-item__icon svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.meta-item__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  line-height: 1;
  opacity: 0.85;
}

.meta-item__value {
  display: block;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* Scroll-Hinweis */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: scrollBounce 2.5s ease-in-out infinite, heroFadeIn 1s ease 1.2s both;
}

.scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

.scroll-hint svg {
  width: 28px; height: 28px;
  stroke: rgba(201,168,76,0.90);
  fill: none;
  stroke-width: 1.5;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ===== ABSCHNITT: WENN JEMAND FEHLT ===== */
.when-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
}

.when-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.when-highlight {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  color: var(--gold);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1rem;
  line-height: 1.65;
}

/* Info-Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.info-card h3 {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.info-card ul { list-style: none; }

.info-card ul li {
  padding: 0.6rem 0 0.6rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 1.05rem;
  color: var(--text);
}

.info-card ul li:last-child { border-bottom: none; }

.info-card ul li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.45;
}

.info-card p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--text);
}

.welcome-text {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  color: var(--gold);
  margin-top: 3.5rem;
}

/* ===== TEELICHT-ABSCHNITT ===== */
.teelicht-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.teelicht-section__bg {
  position: absolute;
  inset: 0;
  background: url('../images/teelicht.jpg') right center / cover no-repeat;
  z-index: 0;
}

.teelicht-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 26, 40, 0.97) 0%,
    rgba(12, 26, 40, 0.93) 52%,
    rgba(12, 26, 40, 0.60) 78%,
    rgba(12, 26, 40, 0.30) 100%
  );
  z-index: 1;
}

.teelicht-section .container { position: relative; z-index: 2; }

.teelicht-content { max-width: 520px; }

.teelicht-content h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.teelicht-content p {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--text);
  margin-bottom: 1rem;
}

.teelicht-content .credit {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--tr), color var(--tr);
  margin-top: 2rem;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--tr);
}

.btn:hover svg { transform: translateX(4px); }

/* ===== PARTNER-ABSCHNITT ===== */
.partner-section {
  background: #ffffff;
  border-top: 2px solid #e8eaed;
  padding: 4.5rem 0 5rem;
}

.partner-intro {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 3rem;
}

.partner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 3.5rem;
  text-align: center;
}

.partner-sep {
  width: 1px;
  height: 90px;
  background: #e8eaed;
  flex-shrink: 0;
}

.partner-item img {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}

.partner-item .partner-cap {
  font-size: 0.78rem;
  color: #6b7280;
  max-width: 200px;
  line-height: 1.5;
}

.partner-thanks {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ACK Platzhalter – nicht mehr benötigt, bleibt als Fallback */
.ack-placeholder {
  display: none;
}

.partner-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: 0.04em;
  transition: color var(--tr);
}

.partner-link:hover { color: #1d499a; }

.partner-link-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: color var(--tr);
}

.footer-links a:hover { color: var(--gold); }

/* E-Mail-Link im Fließtext (Impressum) – nicht uppercase */
.page-content a.js-mail,
.legal-block a.js-mail {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.footer-sep {
  color: rgba(201,168,76,0.35);
  font-size: 0.8rem;
}

/* ===== UNTERSEITEN – PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 1.75rem 4.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/teelicht.jpg') right center / cover no-repeat;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 34, 0.88);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero .page-intro {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ===== SEITENINHALT ===== */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.75rem 6rem;
}

.page-content h2 {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--gold);
  margin: 4rem 0 1.25rem;
  line-height: 1.25;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.page-content p:last-child { margin-bottom: 0; }

.page-content ul {
  list-style: none;
  margin: 0.5rem 0 1.5rem;
}

.page-content ul li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.page-content ul li:last-child { border-bottom: none; }

.page-content ul li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.45;
}

/* Zitat-Block */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.4rem 2rem;
  margin: 2.5rem 0;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Intro-Box */
.intro-box {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin: 0 auto 2.5rem;
  max-width: 560px;
  position: relative;
  text-align: center;
}

.intro-box::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-box p { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-group {
  margin-bottom: 4rem;
}

.faq-group-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

details.faq {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

details.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary .q-text {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  transition: color var(--tr);
  flex: 1;
}

details.faq[open] summary .q-text { color: var(--gold-light); }

details.faq summary .q-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr), background var(--tr);
  background: transparent;
}

details.faq summary .q-icon svg {
  width: 11px; height: 11px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

details.faq[open] summary .q-icon {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.12);
}

.faq-answer {
  padding: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--text-muted);
}

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== IMPRESSUM / DATENSCHUTZ ===== */
.legal-block {
  margin-bottom: 2rem;
}

.legal-block h2 {
  margin-top: 2.5rem;
}

/* ===== ONE-PAGER: IDEE & KONZEPT + FAQ ===== */
.idee-section {
  position: relative;
  background-color: var(--bg);
  background-image: url('../images/teelicht_bg.jpg');
  background-size: cover;
  background-position: bottom right;
  border-top: 1px solid var(--border);
  padding: 5.5rem 0;
}

.onepage-faq {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 5.5rem 0;
}

/* Reduzierten Padding für eingebettete page-content Blöcke */
.idee-section .page-content,
.onepage-faq .page-content {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

/* ===== ANIMATION =====
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
}

@media (max-width: 768px) {
  /* Mobile-Navigation */
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8, 14, 23, 0.98);
    flex-direction: column;
    padding: 2rem 1.75rem;
    gap: 1.75rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.32s ease;
    list-style: none;
    z-index: 150;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .burger { display: flex; }

  .info-grid { grid-template-columns: 1fr; }

  .partner-flex { flex-direction: column; gap: 0; }

  .partner-item { padding: 2rem 1.5rem; }

  .partner-sep { width: 80%; height: 1px; }

  .teelicht-section__overlay {
    background: rgba(10, 22, 34, 0.96);
  }

  .when-section { padding: 4rem 0; }

  section { padding: 4rem 0; }

  .event-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }
  .meta-sep { display: none; }
  .meta-item:nth-child(1),
  .meta-item:nth-child(3),
  .meta-item:nth-child(4) { grid-column: unset; grid-row: unset; }

  .meta-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .idee-section {
    background-image: none;
  }

  .footer-links { flex-wrap: nowrap; justify-content: center; gap: 0.5rem 0.75rem; }
  .footer-links a { white-space: nowrap; }
}

@media (max-width: 500px) {
  .hero__content { padding: 3rem 1.8rem 4rem; }
  .page-content { padding: 3.5rem 1.5rem 4.5rem; }
  .partner-item { padding: 1.75rem 1.5rem; }
}

@media (max-width: 768px) {
  .hero__bg {
    background-image: url('../images/bg_mobile.jpg');
    background-position: center center;
  }
}
