/* ================================================
   Tuttlinger Weinstraße 2026 – Hauptstylesheet
   Redesign: Elegantes Olivgrün + Gold
   ================================================ */

/* ── LOKALE FONTS (kein Google-Server-Aufruf) ── */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dmsans-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: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dmsans-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;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmserifdisplay-normal-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: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmserifdisplay-normal-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;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmserifdisplay-italic-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: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmserifdisplay-italic-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;
}

:root {
  --dark:        #232d16;
  --dark-mid:    #3a4a2a;
  --olive:       #4a5e35;
  --olive-light: #7a9458;
  --gold:        #c8982a;
  --gold-light:  #e2c068;
  --cream:       #f8f2e4;
  --cream-dark:  #ede4cc;
  --white:       #ffffff;
  --text:        #1a1e14;
  --text-mid:    #4a5535;
  --text-light:  #7a8a65;
}

/* ── Reset & Base ── */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
}

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

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

ul { list-style: none; }

/* ── Typography ── */

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 400;
}

.overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.mt-24 { margin-top: 24px; }

/* ── Navigation ── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: rgba(22, 25, 15, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 152, 42, 0.2);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  margin: -12px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--gold-light);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; border-bottom-color: transparent; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background-color: rgba(22, 25, 15, 0.98);
    border-top: 1px solid rgba(200, 152, 42, 0.2);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav-links li:last-child a { border-bottom: none; }
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(200, 152, 42, 0.6);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-light {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(26, 30, 20, 0.3);
}

.btn-light:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

/* ── Gold Divider ── */

.gold-line {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: 20px auto;
}

.gold-line-left { margin-left: 0; }

/* ── Section Basics ── */

section { padding: 96px 24px; }

@media (max-width: 768px) {
  section { padding: 56px 20px; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.text-center { text-align: center; }

/* ── HERO ── */

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--dark);
  background-image: radial-gradient(ellipse at center, var(--dark) 20%, #080c05 100%);
  position: relative;
  overflow: hidden;
}

/* Verlauf & Akzente im Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74, 94, 53, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 152, 42, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  max-width: 860px;
}

.hero-logo {
  height: 220px;
  width: auto;
  max-width: 600px;
  margin: 0 auto 40px;
  object-fit: contain;
}

.hero-datum-claim {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-logo { height: 150px; }
  .hero-datum-claim { max-width: 340px; }
}

.hero-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.hero-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-claim {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(200, 152, 42, 0.5);
  animation: bounce 2.5s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ── MINI HERO (Unterseiten) ── */

.mini-hero {
  position: relative;
  height: 44vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  margin-top: 68px;
  overflow: hidden;
}

.mini-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 15, 0.72);
}

.mini-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.mini-hero h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}

.mini-hero p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .mini-hero h1 { font-size: 32px; }
  .mini-hero p { font-size: 17px; }
}

/* ── WILLKOMMEN ── */

.section-welcome {
  background-color: var(--cream);
  text-align: center;
}

.section-welcome h2 {
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 16px;
}

.grape-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.lead {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 16px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.info-tiles {
  display: flex;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
}

.info-tile {
  flex: 1;
  min-width: 180px;
  padding: 28px 32px;
  background-color: var(--white);
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}

.info-tile:last-child { border-right: none; }

.info-tile-icon {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--olive);
}

.info-tile-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.info-tile-value {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--text);
}

/* ── CARD GRID ── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* Erste Reihe: 3 Kacheln zentriert (je 4 von 12 Spalten) */
.card-grid > *:nth-child(1),
.card-grid > *:nth-child(2),
.card-grid > *:nth-child(3) {
  grid-column: span 4;
}

/* Zweite Reihe: 4 Kacheln (je 3 von 12 Spalten) */
.card-grid > *:nth-child(4),
.card-grid > *:nth-child(5),
.card-grid > *:nth-child(6),
.card-grid > *:nth-child(7) {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid > *:nth-child(-n+7) { grid-column: span 2; }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-grid > *:nth-child(-n+7) { grid-column: span 1; }
}

/* Gastro/Winzer Card */
.gastro-card,
.winzer-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 18px 24px;
  border-radius: 3px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.gastro-card:hover,
.winzer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 152, 42, 0.4);
}

.section-cream-dark .winzer-card {
  background-color: var(--white);
  border: 1px solid var(--cream-dark);
}

.section-cream-dark .winzer-card:hover {
  border-color: var(--gold);
}

.card-logo-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-logo {
  max-height: 90px;
  max-width: 150px;
  object-fit: contain;
}

.card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-cream-dark .card-name {
  color: var(--dark);
}

.card-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto;
  opacity: 0.6;
}

.card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

.section-cream-dark .card-meta {
  color: var(--text-light);
}

/* Boca Text-Fallback */
.boca-text {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
}

/* ── SECTION DARK (Gastronomie) ── */

.section-dark {
  background-color: var(--dark-mid);
  color: #fff;
}

.section-dark h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 8px;
}

.section-dark .overline { color: var(--gold); }

.section-ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cta-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}

.cta-link:hover { color: var(--gold-light); }

/* ── TRENNBILD ── */

.section-separator {
  height: 320px;
  background-image: url('../images/hero/weinberg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.section-separator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 15, 0.65);
}

.separator-quote {
  position: relative;
  z-index: 1;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  font-style: italic;
  color: #fff;
  text-align: center;
  max-width: 680px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .separator-quote { font-size: 19px; }
  .section-separator { background-attachment: scroll; }
}

/* ── SECTION CREAM DARK (Winzer) ── */

.section-cream-dark {
  background-color: var(--cream-dark);
}

.section-cream-dark h2 {
  color: var(--dark);
  font-size: 40px;
  margin-bottom: 8px;
}

.section-cream-dark .overline {
  color: var(--olive);
}

/* ── PROGRAMM PREVIEW ── */

.section-programm-preview {
  background-color: var(--dark);
  color: #fff;
}

.section-programm-preview h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 8px;
}

.programm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .programm-grid { grid-template-columns: 1fr; }
}

.programm-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.programm-card:hover {
  border-color: rgba(200,152,42,0.3);
}

.programm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.programm-card-day {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.programm-card-date {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.programm-card-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.programm-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.programm-item-time {
  color: var(--gold-light);
  font-weight: 500;
  min-width: 56px;
  font-size: 13px;
}

.programm-cta {
  margin-top: 44px;
  text-align: center;
}

/* ── ANFAHRT ── */

.section-anfahrt {
  background-color: var(--cream);
}

.section-anfahrt h2 {
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 24px;
}

.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 768px) {
  .anfahrt-grid { grid-template-columns: 1fr; gap: 32px; }
}

.anfahrt-address {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.anfahrt-text {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.7;
}

.map-wrap {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.map-consent {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.map-consent-text {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 340px;
  line-height: 1.6;
  margin: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ── FOOTER ── */

.footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(200,152,42,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ── LAGEPLAN ── */

.lageplan-section {
  background: var(--dark);
  padding: 80px 24px 90px;
}

.lageplan-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-top: 8px;
}

.lageplan-wrap {
  border-radius: 6px;
  overflow: visible;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,152,42,0.25);
}

.lageplan-interactive {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.lageplan-img {
  width: 100%;
  height: auto;
  display: block;
}

.lageplan-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* Hotspot */
.hs {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}

.hs-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,152,42,0.35);
  position: relative;
  transition: transform 0.2s, background 0.2s;
}

.hs-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(200,152,42,0.5);
  animation: hs-pulse 2s ease-out infinite;
}

@keyframes hs-pulse {
  0%   { opacity: 1;   transform: scale(0.8); }
  70%  { opacity: 0;   transform: scale(1.8); }
  100% { opacity: 0;   transform: scale(1.8); }
}

.hs.hs--active {
  z-index: 50;
}

.hs.hs--active .hs-dot {
  transform: scale(1.3);
  background: var(--gold-light);
}

/* Popup Karte */
.hs-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  width: 220px;
  background: var(--dark);
  border: 1px solid rgba(200,152,42,0.4);
  border-radius: 4px;
  padding: 14px 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.hs-card--left  { right: calc(100% + 8px); }
.hs-card--right { left:  calc(100% + 8px); }

/* Unsichtbare Brücke – verhindert dass das Popup beim Überfahren des Abstands schliesst */
.hs-card--left::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 100%;
  width: 12px;
}

.hs-card--right::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 100%;
  width: 12px;
}

.hs.hs--active .hs-card {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hs-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hs-winery {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hs-wines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-wines li {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  padding: 3px 0 3px 10px;
  position: relative;
  line-height: 1.4;
}

.hs-wines li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.hs-dot--entry {
  background: #4a9e6b;
  box-shadow: 0 0 0 3px rgba(74,158,107,0.35);
}

.hs-dot--entry::before {
  border-color: rgba(74,158,107,0.5);
}

.hs-dot--aperol {
  background: #e8521a;
  box-shadow: 0 0 0 3px rgba(232,82,26,0.35);
}

.hs-dot--aperol::before {
  border-color: rgba(232,82,26,0.5);
}

.hs-pfand {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hs-pfand strong {
  color: var(--gold);
}

.hs-ticket-link {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}

.hs-ticket-link:hover {
  color: var(--gold-light);
}

.lageplan-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── WICHTIG ZU WISSEN (Startseite) ── */

.wichtig-section {
  background: var(--dark-mid);
  border-top: 1px solid rgba(200,152,42,0.2);
  border-bottom: 1px solid rgba(200,152,42,0.2);
  padding: 32px 24px;
}

.wichtig-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.wichtig-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.wichtig-items {
  display: flex;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}

.wichtig-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.wichtig-item strong { color: var(--white); }

.wichtig-icon { font-size: 16px; flex-shrink: 0; }

.wichtig-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(200,152,42,0.4);
  padding: 7px 16px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.wichtig-link:hover {
  background: var(--gold);
  color: var(--dark);
}

@media (max-width: 768px) {
  .wichtig-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wichtig-items { flex-direction: column; gap: 12px; }
}

/* ── 7 GLÄSER BILD ── */

.sieben-glaeser {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  line-height: 0;
}

.sieben-glaeser img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.8s ease;
}

.sieben-glaeser:hover img {
  transform: scale(1.02);
}

.sieben-glaeser-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(22,25,15,0.75) 0%, transparent 100%);
  display: flex;
  justify-content: center;
}

.sieben-glaeser-caption span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── PAGE HERO (Unterseiten) ── */

.page-hero {
  background-color: var(--dark);
  padding: 130px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,152,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero .gold-line {
  margin: 0 auto 20px;
}

.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── PAIRINGS (Gastronomen-Seite) ── */

.pairings-section {
  background: var(--cream);
  padding: 80px 24px 100px;
}

.pairings-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.pairings-intro p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.pairings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 800px) {
  .pairings-grid { grid-template-columns: 1fr; }
}

.pairing-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 140px 1fr;
  transition: background 0.2s;
}

.pairing-card:hover {
  background: #fdfaf4;
}

@media (max-width: 560px) {
  .pairing-card { grid-template-columns: 1fr; }
}

.pairing-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: none;
  background: var(--dark-mid);
}

@media (max-width: 560px) {
  .pairing-logo {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px 20px;
  }
}

.pairing-logo-inner {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pairing-logo-inner img {
  max-width: 90px;
  max-height: 90px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.boca-fallback {
  background: var(--dark-mid);
  border-radius: 2px;
}

.boca-fallback span {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.pairing-body {
  padding: 24px 28px;
}

.pairing-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
}

.pairing-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pairing-winery {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.winery-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.winery-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.pairing-wines {
  list-style: none;
  margin-bottom: 12px;
}

.pairing-wines li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.4;
}

.pairing-wines li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.2;
}

.pairing-wines-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 10px 0 4px;
}

.pairing-wines-label--af {
  color: #4a9e6b;
  letter-spacing: 1px;
}

.pairing-wines--af li {
  color: #4a9e6b !important;
  font-weight: 500;
}

.pairing-wines--af li::before {
  color: #4a9e6b !important;
}

/* Hotspot alkoholfrei */
.hs-af {
  font-size: 11px;
  font-weight: 500;
  color: #6abf85;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pairing-food-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}

.pairing-food {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 8px;
}

.pairing-food li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.4;
}

.pairing-food li::before {
  content: '🍽';
  position: absolute;
  left: 0;
  font-size: 11px;
  line-height: 1.6;
}

.pairing-coming-soon {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* ── INFO SEITE ── */

.info-section {
  background: var(--cream);
  padding: 80px 24px 90px;
}

.info-main-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-top: 8px;
}

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.howto-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 24px 28px;
  transition: border-color 0.2s;
}

.howto-step:hover { border-color: var(--gold); }

.howto-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-mid);
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.howto-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.howto-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

.howto-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.howto-body ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
}

.howto-body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.1;
}

@media (max-width: 560px) {
  .howto-step { grid-template-columns: 1fr; gap: 12px; }
}

/* Warum 5€ */
.why-section {
  background: var(--dark);
  padding: 80px 24px 90px;
}

.why-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--white);
  margin-top: 8px;
}

.why-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-item {
  background: var(--dark-mid);
  border: 1px solid rgba(200,152,42,0.15);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.why-icon { font-size: 28px; }

.why-item span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.why-thanks {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}

.why-thanks p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--gold-light);
  line-height: 1.5;
}

/* Tickets */
.tickets-section {
  background: var(--cream-dark);
  padding: 80px 24px 90px;
}

.tickets-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-top: 8px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 900px) { .tickets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tickets-grid { grid-template-columns: 1fr; } }

.ticket-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.ticket-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.ticket-card--featured {
  border-color: var(--gold);
  background: var(--dark);
}

.ticket-card--featured .ticket-day,
.ticket-card--featured .ticket-name,
.ticket-card--featured .ticket-date,
.ticket-card--featured .ticket-desc { color: rgba(255,255,255,0.8); }

.ticket-card--featured .ticket-price { color: var(--gold-light); }

.ticket-card--vip {
  background: var(--dark-mid);
  border-color: rgba(200,152,42,0.4);
}

.ticket-card--vip .ticket-day,
.ticket-card--vip .ticket-name,
.ticket-card--vip .ticket-date,
.ticket-card--vip .ticket-desc { color: rgba(255,255,255,0.8); }

.ticket-card--hotel {
  background: linear-gradient(135deg, #1a2510 0%, var(--dark-mid) 100%);
  border: 2px solid var(--gold);
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto auto;
  gap: 0 32px;
  align-items: start;
}

@media (max-width: 900px) { .ticket-card--hotel { grid-column: span 2; } }
@media (max-width: 560px) { .ticket-card--hotel { grid-column: span 1; grid-template-columns: 1fr; } }

.ticket-card--hotel .ticket-day,
.ticket-card--hotel .ticket-name,
.ticket-card--hotel .ticket-date,
.ticket-card--hotel .ticket-desc { color: rgba(255,255,255,0.85); }

.ticket-card--hotel .ticket-price { color: var(--gold-light); }

.ticket-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.ticket-badge--vip {
  background: var(--gold-light);
}

.ticket-day {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.ticket-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 4px;
}

.ticket-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.ticket-price {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px;
}

.ticket-price span {
  font-size: 22px;
  opacity: 0.7;
}

.ticket-price--vip {
  font-size: 28px;
  color: var(--gold-light);
}

.ticket-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.ticket-btn {
  margin-top: auto;
  text-align: center;
}

/* Hotel Banner */
.ticket-hotel-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, #1a2510 0%, var(--dark-mid) 60%, #2a3d1a 100%);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.ticket-hotel-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(200,152,42,0.07);
  pointer-events: none;
}

@media (max-width: 700px) {
  .ticket-hotel-banner { grid-template-columns: 1fr; padding: 28px 24px; gap: 28px; }
}

.ticket-hotel-badge {
  display: inline-block;
  background: rgba(200,152,42,0.2);
  border: 1px solid rgba(200,152,42,0.5);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ticket-hotel-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.ticket-hotel-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.ticket-hotel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticket-hotel-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
  line-height: 1.4;
}

.ticket-hotel-list li strong { color: var(--gold-light); }

.ticket-hotel-right {
  text-align: center;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(200,152,42,0.25);
  border-radius: 4px;
  padding: 28px 24px;
}

.ticket-hotel-price {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.ticket-hotel-price span { font-size: 28px; opacity: 0.8; }

.ticket-hotel-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  line-height: 1.5;
}

.ticket-hotel-address {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
  line-height: 1.6;
}

.tickets-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

/* ── CTA BAND ── */

.cta-band {
  background: var(--dark-mid);
  padding: 56px 24px;
}

.cta-band-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 24px;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(200, 152, 42, 0.1);
  color: var(--gold);
  border: 1px solid rgba(200,152,42,0.3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

/* ── DJ SEKTION (Programm) ── */

.dj-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .dj-card { grid-template-columns: 1fr; }
}

.dj-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.dj-body {
  padding: 36px 40px;
}

.dj-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dj-name {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 4px;
}

.dj-time {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.dj-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.dj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dj-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  color: var(--text-light);
}

/* ── GALERIE ── */

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .galerie-grid { grid-template-columns: 1fr; }
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galerie-item:hover img {
  transform: scale(1.04);
}

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 15, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.galerie-overlay svg {
  color: #fff;
  opacity: 0;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}

.galerie-item:hover .galerie-overlay {
  background: rgba(22, 25, 15, 0.3);
}

.galerie-item:hover .galerie-overlay svg {
  opacity: 1;
}

/* ── TICKET CTA SEKTION ── */

.section-ticket-cta {
  background: var(--dark-mid);
  text-align: center;
  padding: 72px 24px;
}

.section-ticket-cta h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 12px;
}

.section-ticket-cta p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ── UTILITIES ── */

.section-title-block {
  margin-bottom: 0;
}

.section-title-block h2 {
  margin-top: 8px;
}

/* ── PROGRAMM SEITE ── */

.programm-section {
  background: var(--cream);
  padding: 80px 24px 90px;
}

.programm-days {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.programm-day {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
}

.programm-day-head {
  background: var(--dark-mid);
  padding: 18px 32px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.programm-day-label {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
}

.programm-day-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.programm-day-items {
  padding: 8px 0;
}

.programm-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--cream-dark);
}

.programm-item:last-child {
  border-bottom: none;
}

.programm-item--highlight {
  background: rgba(200, 152, 42, 0.05);
}

.programm-item--pending {
  opacity: 0.45;
}

.programm-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.programm-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.programm-item-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--dark);
}

.programm-item-desc {
  font-size: 13px;
  color: var(--text-light);
}

.programm-item-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,152,42,0.4);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .programm-item { grid-template-columns: 56px 1fr; padding: 14px 20px; }
  .programm-item-tag { display: none; }
  .programm-day-head { padding: 14px 20px; }
}

/* DJ MeloSan Sektion */

.dj-section {
  background: var(--dark);
  padding: 80px 24px 90px;
}

.dj-card-new {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-mid);
}

@media (max-width: 860px) {
  .dj-card-new { grid-template-columns: 1fr; }
}

.dj-photo-wrap {
  position: relative;
  min-height: 380px;
}

.dj-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dj-info-new {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 860px) {
  .dj-info-new { padding: 36px 28px; }
}

.dj-overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.dj-name-new {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.dj-logo-new {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.dj-time-new {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.dj-desc-new {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.dj-tags-new {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dj-tags-new span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.5);
}

/* ── GALERIE SEITE ── */

.galerie-section {
  background: var(--dark);
  padding: 60px 0 0;
}

.galerie-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

@media (max-width: 900px) {
  .galerie-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .galerie-masonry { grid-template-columns: 1fr; }
}

.galerie-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.galerie-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

@media (max-width: 560px) {
  .galerie-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.galerie-item:hover img {
  transform: scale(1.05);
}

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 15, 0);
  transition: background 0.3s;
}

.galerie-item:hover .galerie-overlay {
  background: rgba(22, 25, 15, 0.25);
}

.galerie-archive-section {
  background: var(--dark-mid);
  padding: 72px 24px 80px;
}

.galerie-archive-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  line-height: 1.2;
}

.galerie-archive-text {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.galerie-note-section {
  background: var(--dark);
  padding: 40px 24px 64px;
}

.galerie-note {
  font-size: 14px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  font-style: italic;
}

/* ── Mobile Fixes ── */

@media (max-width: 768px) {
  .section-welcome h2,
  .section-dark h2,
  .section-cream-dark h2,
  .section-programm-preview h2,
  .section-anfahrt h2 {
    font-size: 28px;
  }

  .dj-name-new { font-size: 30px; }
  .dj-name     { font-size: 28px; }
  .pairing-name { font-size: 18px; }

  .galerie-archive-title { font-size: 26px; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ── Fehlende Utility-Klassen ── */

.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.section-subtitle {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 6px;
}

.btn-wine {
  background: var(--dark);
  color: var(--gold-light);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-wine:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* ── Social Media (Nav) ── */

.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 10px;
  margin-right: -10px;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-instagram:hover {
  opacity: 1;
  transform: scale(1.1);
}

.nav-instagram svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .nav-instagram {
    padding: 14px 24px;
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    justify-content: flex-start;
    opacity: 1;
  }
  .nav-instagram svg {
    width: 22px;
    height: 22px;
  }
}

/* ── PARTNER / SPONSOREN ── */

.section-partner {
  background-color: var(--dark);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.partner-carousel-frame {
  margin-top: 48px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.partner-carousel-frame::before,
.partner-carousel-frame::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partner-carousel-frame::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 20%, transparent);
}

.partner-carousel-frame::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 20%, transparent);
}

.partner-track-wrapper {
  overflow: hidden;
}

.partner-track {
  display: flex;
  width: max-content;
  animation: scroll-partner 22s linear infinite;
}

.partner-track-wrapper:hover .partner-track {
  animation-play-state: paused;
}

@keyframes scroll-partner {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-card {
  width: 190px;
  height: 110px;
  margin-right: 40px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(200,152,42,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.partner-card:hover {
  border-color: var(--gold);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(200,152,42,0.25);
}

.partner-card img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
}
