/* ── Lokale Schriften (DSGVO-konform, keine Google-Server) ── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/bebas-neue-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 900; font-display: swap;
  src: url('../fonts/playfair-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Crimson Text';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/crimson-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Crimson Text';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/crimson-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Crimson Text';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/crimson-400-italic.woff2') format('woff2');
}

/* =========================================================
   Classic Car Show – Drive-In Kornwestheim
   Vintage Cinema Style · Original-Artstyle
   ========================================================= */

:root {
  --gold: #D4A94B;
  --gold-light: #F0C96A;
  --gold-dark: #A07830;
  --cream: #F5EDD8;
  --cream-mid: #ECDFB5;
  --dark: #0E0B08;
  --dark-mid: #1A1510;
  --dark-warm: #2A1F0F;
  --rust: #8B3A1A;
  --amber: #E8821A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Crimson Text', Georgia, serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  background: linear-gradient(to bottom, rgba(10,7,4,0.95), transparent);
  transition: background 0.25s;
}
nav.site-nav > .logo        { grid-column: 1; justify-self: start; }
nav.site-nav > ul           { grid-column: 2; justify-self: center; }
nav.site-nav > .btn-tickets { grid-column: 3; justify-self: end; }
nav.site-nav > .nav-toggle  { grid-column: 3; justify-self: end; }
nav.site-nav.scrolled {
  background: rgba(10,7,4,0.96);
  border-bottom: 1px solid rgba(212,169,75,0.2);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.logo:hover img { opacity: 0.85; }
@media (max-width: 1025px) {
  .logo img { height: 32px; }
}
nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav.site-nav ul a {
  text-decoration: none;
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
nav.site-nav ul a:hover,
nav.site-nav ul a.active { opacity: 1; color: var(--gold); }

.btn-tickets {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 10px 28px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-tickets:hover { background: var(--gold); color: var(--dark); }
.btn-tickets[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 1025px) {
  nav.site-nav { padding: 14px 20px; }
  nav.site-nav ul { display: none; }
  nav.site-nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,7,4,0.98);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(212,169,75,0.2);
  }
  .nav-toggle { display: block; }
  .btn-tickets { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 0 0;
  overflow: hidden;
}

/* Hero-Bild als Hintergrund */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero/hero4k-new-2000.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.0)  35%,
    rgba(10,6,2,0.45) 75%,
    rgba(10,6,2,0.92) 100%);
}
@media (max-width: 880px) {
  .hero-bg { background-image: url('../img/hero/hero4k-new-1000.jpg'); }
}

/* Sternenhimmel-Overlay */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.stars::before, .stars::after {
  content: '';
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow:
    120px 40px 0 rgba(255,255,255,0.5), 280px 80px 0 rgba(255,255,255,0.3),
    450px 30px 0 rgba(255,255,255,0.6), 600px 60px 0 rgba(255,255,255,0.25),
    750px 20px 0 rgba(255,255,255,0.4), 900px 90px 0 rgba(255,255,255,0.5),
    1050px 40px 0 rgba(255,255,255,0.35), 1200px 70px 0 rgba(255,255,255,0.5),
    80px 130px 0 rgba(255,255,255,0.25), 220px 160px 0 rgba(255,255,255,0.4),
    380px 110px 0 rgba(255,255,255,0.5), 520px 145px 0 rgba(255,255,255,0.3),
    680px 130px 0 rgba(255,255,255,0.55), 830px 155px 0 rgba(255,255,255,0.25);
  animation: twinkle 4s ease-in-out infinite alternate;
}
.stars::after {
  box-shadow:
    160px 200px 0 rgba(255,255,255,0.4), 310px 220px 0 rgba(255,255,255,0.25),
    480px 195px 0 rgba(255,255,255,0.5), 640px 215px 0 rgba(255,255,255,0.3),
    790px 200px 0 rgba(255,255,255,0.55), 950px 225px 0 rgba(255,255,255,0.25);
  animation-delay: 2s;
}
@keyframes twinkle { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Hero-Eyebrow groß und frei oben */
.hero-eyebrow {
  position: relative;
  z-index: 5;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 41px);
  letter-spacing: 4px;
  color: var(--gold-light);
  text-align: center;
  margin: 8px 24px 28px;
  text-shadow: 0 0 24px rgba(212,169,75,0.4), 0 2px 8px rgba(0,0,0,0.6);
  animation: fadeUp 1s 0.1s ease both;
}
.hero-eyebrow .small {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-style: normal;
  letter-spacing: 7px;
  font-size: clamp(13px, 1.4vw, 17px);
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.85;
}

/* Hero CTA – direkt unter dem Eyebrow */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  margin-bottom: auto;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.3s 0.4s ease both;
}

/* Date-Banner: kompakt, unter dem Bild, voll bezweckend */
.date-banner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 56px;
  background: var(--dark);
  width: 100%;
  justify-content: center;
  margin-top: 56px;
  margin-bottom: 0;
  flex-wrap: wrap;
  animation: fadeUp 1.4s 0.6s ease both;
}
.date-banner::before,
.date-banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 40px;
  background-image: url('../img/hero/marquee-lights.png');
  background-repeat: repeat-x;
  background-size: auto 40px;
  pointer-events: none;
}
.date-banner::before { top: -40px; }
.date-banner::after  { bottom: -40px; }
.date-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0.92;
}
.date-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 60px);
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(212,169,75,0.5);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Light Strip darunter (Abschluss) */
.light-strip {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 18px;
  background-image: url('../img/hero/light-strip.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  display: block;
  margin-top: 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 4px;
  padding: 15px 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(160,120,48,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(160,120,48,0.6);
}
.btn-ghost {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 4px;
  padding: 13px 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(212,169,75,0.1); color: var(--gold-light); }

/* ── SECTION HEADINGS ── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 8px;
  color: var(--gold-light);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.section-title::before, .section-title::after {
  content: '✦';
  color: var(--gold-dark);
  margin: 0 18px;
  font-size: 0.6em;
  vertical-align: middle;
}
.section-sub {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  color: var(--cream);
  opacity: 0.65;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

/* ── WELCOME (Pergament) ── */
.welcome {
  background: var(--cream) url('../img/textures/paper-texture.jpg') center/cover;
  color: var(--dark);
  text-align: center;
  padding: 90px 24px;
  position: relative;
}
.welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,237,216,0.3) 0%, rgba(245,237,216,0) 30%, rgba(245,237,216,0) 70%, rgba(245,237,216,0.3) 100%);
  pointer-events: none;
}
.welcome > * { position: relative; z-index: 1; }
.welcome h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 6px;
  color: var(--dark);
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}
.welcome h2::before, .welcome h2::after {
  content: '✦';
  color: var(--dark);
  margin: 0 18px;
  font-size: 0.55em;
  vertical-align: middle;
}
.welcome p {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 20px;
  line-height: 1.8;
  color: #3a2e1e;
}
.welcome p strong { color: var(--dark); }
.welcome .btn-primary { margin-top: 26px; }

/* ── INFO CARDS ── */
.info-section {
  background: var(--dark);
  padding: 90px 24px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.info-card {
  border: 1px solid rgba(212,169,75,0.25);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  background: rgba(42,31,15,0.3);
  transition: border-color 0.3s, transform 0.3s;
}
.info-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.info-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 12px;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.78;
}

/* ── SECTION HEADER (zentriert) ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── ABLAUF / TIMELINE ── */
.ablauf {
  background: var(--dark-mid);
  padding: 90px 24px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 14%; right: 14%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.timeline-item { text-align: center; position: relative; z-index: 2; }
.timeline-time {
  display: inline-block;
  background: var(--dark-mid);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 16px 30px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(212,169,75,0.2);
}
.timeline-label {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 15px;
  color: var(--cream);
  opacity: 0.7;
}
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
}

/* ── POKALE ── */
.pokale {
  background: var(--cream) url('../img/textures/paper-texture.jpg') center/cover;
  color: var(--dark);
  padding: 90px 24px;
  text-align: center;
  position: relative;
}
.pokale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,237,216,0.3) 0%, rgba(245,237,216,0) 30%, rgba(245,237,216,0) 70%, rgba(245,237,216,0.3) 100%);
  pointer-events: none;
}
.pokale > * { position: relative; z-index: 1; }
.pokale .section-title {
  color: var(--dark);
}
.pokale .section-title::before,
.pokale .section-title::after {
  color: var(--dark);
}
.pokale .section-sub {
  color: var(--dark);
  opacity: 1;
  font-style: italic;
}
.pokale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.pokal-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--gold-dark);
  padding: 36px 24px;
  border-radius: 4px;
  transition: transform 0.25s, border-color 0.25s;
}
.pokal-card:hover { transform: translateY(-3px); border-color: var(--rust); }
.pokal-icon { font-size: 38px; margin-bottom: 16px; display: block; }
.pokal-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 10px;
}
.pokal-card p {
  font-size: 16px;
  color: #3a2e1e;
  line-height: 1.5;
}
.pokal-group-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--dark);
  text-align: center;
  max-width: 1000px;
  margin: 44px auto 24px;
  text-transform: uppercase;
}
.pokal-group-title::before, .pokal-group-title::after {
  content: '✦';
  color: var(--dark);
  margin: 0 14px;
  font-size: 0.6em;
  vertical-align: middle;
}
.pokal-group-title:first-of-type { margin-top: 8px; }
.pokale-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pokale-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 760px; }
.pokale-grid.cols-4 .pokal-card,
.pokale-grid.cols-3 .pokal-card {
  text-align: center;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pokale-grid.cols-4 .pokal-card h3,
.pokale-grid.cols-3 .pokal-card h3 { margin-bottom: 0; }
@media (max-width: 860px) {
  .pokale-grid.cols-4, .pokale-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr); max-width: 520px;
  }
}
@media (max-width: 520px) {
  .pokale-grid.cols-4, .pokale-grid.cols-3 {
    grid-template-columns: 1fr; max-width: 320px;
  }
}

/* ── HINWEIS ── */
.hinweis-section {
  background: var(--dark);
  padding: 60px 24px;
}
.hinweis {
  max-width: 880px;
  margin: 0 auto;
  background: var(--dark-warm);
  border-left: 4px solid var(--amber);
  padding: 28px 32px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.hinweis-icon { font-size: 36px; flex-shrink: 0; }
.hinweis h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 22px;
  color: var(--amber);
  margin-bottom: 8px;
}
.hinweis p { color: var(--cream); opacity: 0.85; line-height: 1.6; }

/* ── TICKETS-CTA ── */
.tickets-section {
  background: var(--dark-mid);
  padding: 90px 24px;
}
.tickets-cta {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark-warm), var(--dark));
  border: 1px solid rgba(212,169,75,0.3);
  padding: 60px 40px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 0 80px rgba(212,169,75,0.08);
}
.tickets-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 50px);
  letter-spacing: 6px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.tickets-cta p {
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.6;
}
.tickets-cta .btn-primary { margin-top: 12px; }
.tickets-note {
  font-style: italic;
  font-size: 14px;
  margin-top: 18px;
  color: var(--cream);
  opacity: 0.55;
}

/* ── GALLERY ── */
.gallery {
  background: var(--dark-mid);
  padding: 90px 24px;
  text-align: center;
}

/* Galerie-Tabs (Pills) */
.gallery-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  margin: 0 auto 32px;
  border: 1px solid rgba(212,169,75,0.25);
  border-radius: 999px;
  background: rgba(10,7,4,0.4);
}
.gallery-tab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--cream);
  background: transparent;
  border: 0;
  padding: 10px 28px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.25s;
}
.gallery-tab:hover { opacity: 1; }
.gallery-tab.is-active {
  background: var(--gold);
  color: var(--dark);
  opacity: 1;
}
.gallery-card[hidden] { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.gallery-card {
  aspect-ratio: 4/3;
  background: var(--dark-warm);
  border: 1px solid rgba(212,169,75,0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}
.gallery-card:hover { transform: scale(1.02); border-color: var(--gold); }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) sepia(0.15);
  transition: filter 0.3s;
}
.gallery-card:hover img { filter: brightness(1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-label { opacity: 1; }
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  font-size: 14px;
  opacity: 0.4;
  background: linear-gradient(160deg, #1a0e06 0%, #2a1a08 50%, #0a0804 100%);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,3,1,0.97);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(212,169,75,0.3);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Bebas Neue', sans-serif;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold); color: var(--dark);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
  opacity: 0.7;
}

/* ── RÜCKBLICK-TEASER ── */
.rueckblick-teaser-section {
  background: var(--cream) url('../img/textures/paper-texture.jpg') center/cover;
  color: var(--dark);
  padding: 90px 24px;
  position: relative;
}
.rueckblick-teaser-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,237,216,0.3) 0%, rgba(245,237,216,0) 30%, rgba(245,237,216,0) 70%, rgba(245,237,216,0.3) 100%);
  pointer-events: none;
}
.rueckblick-teaser-section > * { position: relative; z-index: 1; }
.rueckblick-teaser {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .rueckblick-teaser { grid-template-columns: 1fr; gap: 32px; }
}
.rueckblick-teaser img {
  border-radius: 4px;
  filter: sepia(0.3) brightness(0.9);
  border: 1px solid var(--gold-dark);
}
.rueckblick-teaser .meta {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  color: var(--dark);
  font-size: 13px;
  margin-bottom: 12px;
}
.rueckblick-teaser h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 4px;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.05;
}
.rueckblick-teaser p {
  color: #3a2e1e;
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.7;
}

/* ── PARTNER ── */
.partner-section {
  background: var(--dark);
  padding: 90px 24px;
  text-align: center;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
.partner-logo {
  aspect-ratio: 3/2;
  background: var(--dark-warm);
  padding: 22px;
  border: 1px solid rgba(212,169,75,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--cream);
  font-size: 18px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.partner-logo:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.partner-logo small {
  display: block;
  font-family: 'Crimson Text', serif;
  letter-spacing: 0;
  font-style: italic;
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.7;
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(212,169,75,0.2);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.site-footer .footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.site-footer h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
}
.site-footer p, .site-footer a {
  color: var(--cream);
  opacity: 0.7;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.7;
}
.site-footer a:hover { color: var(--gold); opacity: 1; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(212,169,75,0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--cream);
  opacity: 0.45;
}

/* ── ARTICLE / RÜCKBLICK SEITEN ── */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.article .eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
}
.article h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}
.article .lead {
  font-size: 20px;
  color: var(--cream);
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212,169,75,0.2);
}
.article p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--cream);
}
.article .author {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,169,75,0.2);
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
}
.article .back-link {
  display: inline-block;
  margin-top: 32px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
}
.article .back-link:hover { color: var(--gold-light); }

/* Rückblick-Übersicht */
.rueckblick-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.rueckblick-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: rgba(42,31,15,0.4);
  border: 1px solid rgba(212,169,75,0.25);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color 0.25s;
}
.rueckblick-card:hover { border-color: var(--gold); }
.rueckblick-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: sepia(0.2) brightness(0.85);
}
.rueckblick-card-body { padding: 24px 28px; }
.rueckblick-card .meta {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
}
.rueckblick-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}
.rueckblick-card p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.rueckblick-card a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
}
.rueckblick-card a:hover { color: var(--gold-light); }
@media (max-width: 720px) {
  .rueckblick-card { grid-template-columns: 1fr; }
}

/* Page-Header für Unterseiten */
.page-header {
  padding: 140px 24px 40px;
  text-align: center;
}
.page-header .section-title { color: var(--gold-light); }

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

/* ── COOKIE / DATENSCHUTZ HINWEIS ── */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--dark-mid);
  border-top: 2px solid var(--gold-dark);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.45);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.cookie-consent.cc-show { transform: translateY(0); }
.cc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cc-text {
  color: var(--cream);
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  flex: 1 1 420px;
  opacity: 0.92;
}
.cc-text a { color: var(--gold-light); text-decoration: underline; }
.cc-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cc-btn {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid var(--gold-dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: var(--gold);
  color: var(--dark);
}
.cc-btn:hover { background: var(--gold-light); }
@media (max-width: 600px) {
  .cc-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cc-actions { justify-content: stretch; }
  .cc-btn { flex: 1; }
}

/* ── RECHTSSEITEN (Impressum / Datenschutz) ── */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 100px;
  color: var(--cream);
  font-family: 'Crimson Text', serif;
}
.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 26px;
  color: var(--gold-light);
  margin: 40px 0 12px;
}
.legal h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 19px;
  color: var(--gold);
  margin: 26px 0 8px;
}
.legal p, .legal li {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.9;
  margin-bottom: 12px;
}
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--gold-light); }
.legal .placeholder {
  background: rgba(139,58,26,0.18);
  border-left: 3px solid var(--rust);
  padding: 4px 10px;
  border-radius: 2px;
  font-style: italic;
}

/* ── GALERIE: DATENSCHUTZ-HINWEIS ── */
.gallery-notice {
  max-width: 820px;
  margin: 0 auto 12px;
  padding: 16px 22px;
  background: var(--dark-mid);
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  color: var(--cream);
  font-family: 'Crimson Text', serif;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
  text-align: center;
}
.gallery-notice a { color: var(--gold-light); }

/* Partner-Kacheln als Links + Dank-Text */
a.partner-logo { color: var(--cream); text-decoration: none; }
.partner-intro {
  font-family: 'Crimson Text', serif;
  max-width: 820px;
  margin: 0 auto;
  color: var(--cream);
  opacity: 0.9;
  font-size: 17px;
  line-height: 1.7;
}

/* Partner-Logos als Bilder */
.partner-logo img { width: 100%; height: 100%; object-fit: contain; }
.partner-logo.is-dark { background: var(--dark-warm); }
