/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }

:root {
  --bg:           #07050F;
  --white:        #0F0C1C;
  --surface:      #181228;

  --purple:       #7C3AED;
  --purple-light: #A78BFA;
  --pink:         #EC4899;

  --text:         #EDE8FF;
  --text-muted:   #9485C4;
  --border:       #261B42;

  --gradient:      linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --gradient-soft: linear-gradient(135deg, #1C0E38 0%, #100820 100%);

  /* Kein Pill-Design, scharfe Ecken */
  --radius-sm:   3px;
  --radius-md:   4px;
  --radius-lg:   4px;
  --radius-full: 4px;

  --shadow-sm: 0 1px 4px  rgba(0,0,0,.5);
  --shadow-md: 0 4px 20px rgba(0,0,0,.6);

  --ease: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

.section-header { margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 12px; }

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 2px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 14px;
  max-width: 640px;
  line-height: 1.8;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 2px 12px rgba(124,58,237,.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(124,58,237,.50);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  text-decoration: none;
}

.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--ease);
}

.navbar.scrolled {
  background: rgba(7, 5, 15, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--ease);
}
.nav-links a:hover { color: var(--purple); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

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

/* === HERO === */
.hero {
  min-height: 100vh;
  background: #0A0515;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

/* Video / Foto Hintergrund */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 5, 25, 0.88) 0%,
    rgba(50, 10, 90, 0.78) 100%
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(48px, 13vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Outline-Button auf dunklem Hintergrund */
.hero-left .btn-outline {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.25);
}
.hero-left .btn-outline:hover {
  border-color: white;
  color: white;
}

.hero-quick {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.quick-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.85);
}

.quick-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
}

.quick-item a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; }
.quick-item a:hover { color: white; }

/* Hero Karte rechts – Glas auf dunklem BG */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.hc-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.4);
}

.hc-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hc-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 18px 0;
}

/* Navbar-Links weiß auf dunklem Hero – nur Desktop, nicht im mobilen Dropdown */
@media (min-width: 769px) {
  .navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.8); }
  .navbar:not(.scrolled) .nav-links a:hover { color: white; }
}

/* ── GENRE TICKER / MARQUEE ── */
.marquee-band {
  background: var(--gradient);
  overflow: hidden;
  padding: 13px 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  padding: 0 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255,255,255,.92);
}
.marquee-track span::after {
  content: '·';
  padding-left: 28px;
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FOTO-BREAK TEXT ── */
.photo-break { position: relative; }
.photo-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  text-align: center;
  pointer-events: none;
}
.photo-break-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
  max-width: 900px;
}

/* === ÜBER MICH === */
.about { background: var(--gradient-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.about-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-lead {
  font-size: 1.05rem !important;
  color: var(--text) !important;
  font-weight: 500;
}

.about-facts {
  border: 2px solid var(--border);
  background: var(--white);
  margin-top: 32px;
}

/* Foto-Slot neben dem Text */
.about-photo {
  position: sticky;
  top: 120px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.2);
  background: var(--surface);
}

.fact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.fact-row:last-child { border-bottom: none; }

.fact-key {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.fact-val { color: var(--text); }

/* Instagram Link – auffällig */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(90deg, #E1306C, #F77737, #FCAF45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.insta-link:hover {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(225,48,108,.6));
  text-decoration: none;
}
.insta-icon { -webkit-text-fill-color: initial; }

/* === EQUIPMENT === */
.equipment { background: var(--white); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--border);
}

.equip-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.equip-card:nth-child(3n) { border-right: none; }
.equip-card:nth-child(4),
.equip-card:nth-child(5),
.equip-card:nth-child(6) { border-bottom: none; }

.equip-card::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gradient);
  margin-bottom: 20px;
}

.equip-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.equip-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.equip-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-left: 3px solid var(--purple-light);
  padding-left: 14px;
}

/* === PREISE === */
.preise { background: var(--gradient-soft); }

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

.preis-card {
  background: var(--white);
  border: 2px solid var(--border);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.preis-highlight {
  border-color: var(--purple);
  border-width: 3px;
}

.preis-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}

.preis-head { margin-bottom: 10px; }

.preis-head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.preis-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preis-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.preis-list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.preis-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.preis-list li::before {
  content: '▸';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* Hochzeit Sonderpaket */
.preis-hochzeit {
  background: var(--white);
  border: 2px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 48px;
  padding: 36px;
  align-items: center;
  margin-bottom: 20px;
}

.preis-hochzeit-left .section-tag { margin-bottom: 10px; }

.preis-hochzeit-left h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.preis-hochzeit-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.preis-hochzeit-mid .preis-list { margin-bottom: 0; }

.preise-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-left: 3px solid var(--purple-light);
  padding-left: 14px;
  line-height: 1.7;
}

/* === EVENTS NUMMERIERT === */
.events { background: var(--white); }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--border);
  border-left: 2px solid var(--border);
}

.event-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 36px 28px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  align-items: start;
  transition: var(--ease);
}

.event-item:hover { background: var(--gradient-soft); }

.event-nr {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 4px;
}

.event-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* === PHOTO BREAK === */
.photo-break {
  height: 420px;
  position: relative;
  overflow: hidden;
  background: #0A0515;
}

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

.photo-break-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.2);
  border: 2px dashed rgba(255,255,255,.1);
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.55) 0%, rgba(236,72,153,.35) 100%);
  pointer-events: none;
}

/* === ANFAHRT === */
.anfahrt { background: var(--gradient-soft); }

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

.anfahrt-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--border);
  background: var(--white);
}

.anfahrt-block {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.anfahrt-block:last-child { border-bottom: none; }

.anfahrt-block h3 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.anfahrt-block address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

.anfahrt-block p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 10px;
}

.anfahrt-block p:last-child { margin-bottom: 0; }

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

/* Reichweite Tabelle */
.rw-table { display: flex; flex-direction: column; gap: 8px; }

.rw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.rw-row:last-child { border-bottom: none; padding-bottom: 0; }

.rw-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
}

.rw-gratis  { background: #0A2318; color: #34D399; }
.rw-kosten  { background: #1A0E30; color: #A78BFA; }
.rw-anfrage { background: #2A1A05; color: #FBBF24; }

/* Karte */
.anfahrt-map {
  height: 100%;
  min-height: 400px;
}

.anfahrt-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 2px solid var(--border);
  display: block;
}

.map-placeholder {
  width: 100%;
  min-height: 400px;
  border: 2px dashed var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
}

.map-placeholder p { font-size: 0.85rem; line-height: 1.6; }
.map-placeholder p:first-child { font-size: 2.5rem; }
.map-placeholder strong { color: var(--text); font-size: 1rem; }
.map-placeholder code { font-size: 0.75rem; background: var(--surface); padding: 2px 6px; border-radius: 2px; }

/* === GALERIE === */
.galerie { background: var(--gradient-soft); }

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

.foto-slot {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Wenn ein echtes Bild eingefügt wird */
.foto-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--border);
}

.foto-slot-wide { grid-column: span 2; }

/* === BUCHUNG === */
.booking { background: var(--white); }

.booking .section-sub a { color: var(--purple); font-weight: 600; }

.booking-form {
  max-width: 820px;
  background: var(--white);
  border: 2px solid var(--border);
  padding: 52px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: var(--ease);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A8C8; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.time-range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.time-range input { flex: 1; }
.time-sep {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.form-submit { margin-top: 4px; }
.form-submit .btn { font-size: 0.95rem; padding: 15px 44px; }

.form-message {
  margin-top: 20px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  display: none;
  border-left: 4px solid;
}

.form-message.success {
  background: #0A2318; color: #34D399;
  border-color: #34D399; display: block;
}

.form-message.error {
  background: #2A0F0F; color: #F87171;
  border-color: #F87171; display: block;
}

.form-message.warning {
  background: #241A04; color: #FCD34D;
  border-color: #F59E0B; display: block;
}

/* === FOOTER === */
.footer {
  background: #04030A;
  color: rgba(255,255,255,.55);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.06em;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-tagline {
  margin-top: 10px;
  font-size: 0.78rem !important;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-col ul li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--ease);
}

.footer-col ul li a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.4);
  margin-left: 8px;
}

.footer-bottom a:hover { color: rgba(255,255,255,.7); }

.footer-admin {
  font-size: 0.72rem;
  color: rgba(255,255,255,.2) !important;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: 4 / 3; max-height: 360px; }
  .anfahrt-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .equip-card:nth-child(2n) { border-right: none; }
  .equip-card:nth-child(2n+1):nth-last-child(-n+2),
  .equip-card:nth-child(2n+1):nth-last-child(-n+2) ~ .equip-card { border-bottom: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 12px 20px; }

  /* Desktop-Links verstecken, Hamburger anzeigen */
  .nav-links {
    display: none;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 8px 0 20px;
    border-bottom: 2px solid var(--border);
    gap: 0;
    z-index: 999;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 28px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .preise-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .foto-slot-wide { grid-column: span 2; }
  .events-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
  section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equip-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .equip-card:last-child { border-bottom: none !important; }

  /* Preise Sonderpaket – stack auf Mobile */
  .preis-hochzeit {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }
  .preis-hochzeit-mid { grid-template-columns: 1fr; }

  /* Hero mobile */
  .hero { padding-top: 80px; }
  .hero-eyebrow { letter-spacing: 0.2em; font-size: 0.72rem; }
  .hero-quick { gap: 20px; padding-top: 18px; }
  .hero-actions { gap: 10px; }

  /* Photo break kleiner auf Mobile */
  .photo-break { height: 280px; }

  /* Anfahrt Kontakt-Links besser anklickbar */
  .anfahrt-block a { display: inline-block; padding: 2px 0; min-height: 36px; line-height: 2.4; }

  /* Booking Button full-width auf Mobile */
  .form-submit .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }

  /* Container früher enger */
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }

  .hero-actions { flex-direction: column; gap: 8px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-eyebrow { letter-spacing: 0.15em; }
  .hero-tagline { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-quick { gap: 12px; flex-direction: column; padding-top: 14px; }

  .preis-card { padding: 28px 20px; }
  .preis-hochzeit { padding: 24px 16px; }

  .event-item { padding: 24px 18px; gap: 14px; }
  .event-nr { font-size: 2rem; }

  .booking-form { padding: 24px 16px; }

  .about-facts { margin-top: 24px; }
  .fact-row { grid-template-columns: 100px 1fr; gap: 10px; padding: 12px 16px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-admin { color: rgba(255,255,255,.4) !important; }

  .section-header h2 { font-size: 1.6rem; }
  .section-tag { font-size: 0.62rem; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 42px; }
  .container { padding: 0 14px; }
  .time-range { flex-direction: column; gap: 6px; }
  .time-sep { text-align: center; }
}

/* ============================================================
   UI/UX PRO — Micro-interactions, Scroll-Reveal & Polish
   ============================================================ */

/* ── FOCUS RING ── */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── BUTTON SHIMMER ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:active { transform: translateY(1px) !important; box-shadow: none !important; }

/* ── SECTION HEADER GRADIENT ACCENT ── */
.section-header h2 {
  padding-bottom: 20px;
  position: relative;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gradient);
  transition: width 0.75s cubic-bezier(.22,.68,0,1.3) 0.25s;
}
.section-header.revealed h2::after { width: 36px; }

/* ── HERO CARD GLASS ENHANCE ── */
.hero-card {
  box-shadow: 0 8px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
}

/* ── EQUIPMENT CARDS ── */
.equip-card {
  transition: background 0.22s ease, box-shadow 0.22s ease;
}
.equip-card::before {
  transition: width 0.35s ease;
}
.equip-card:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 2px var(--purple-light);
}
.equip-card:hover::before { width: 100%; }

/* ── PREISE CARDS ── */
.preis-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.preis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  border-color: var(--purple-light);
}
.preis-highlight {
  background: linear-gradient(160deg, #1E1030 0%, #1A0D28 100%);
}
.preis-highlight:hover {
  box-shadow: 0 18px 50px rgba(124,58,237,.2) !important;
  border-color: var(--purple) !important;
}

/* ── EVENT ITEMS ── */
.event-item {
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.event-item:hover {
  background: var(--gradient-soft);
  box-shadow: inset 3px 0 0 var(--purple);
}

/* ── ANFAHRT BLOCK LINKS ── */
.anfahrt-block a {
  transition: color 0.2s;
  font-weight: 500;
}
.anfahrt-block a:hover { color: var(--purple); text-decoration: none; }

/* ── SCROLL REVEAL (with scale for more drama) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.1), transform 0.65s cubic-bezier(.22,.68,0,1.1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn-primary::after { display: none; }
  .equip-card, .preis-card, .event-item { transition: none !important; }
  .equip-card::before { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   KRASSE ANIMATIONEN
   ============================================================ */

/* ── HERO TITLE: BUCHSTABEN FALLEN REIN ── */
@keyframes letterDrop {
  0%   { opacity: 0; transform: translateY(-60px) scaleY(0.55); filter: blur(8px); }
  65%  { transform: translateY(8px) scaleY(1.05); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

.hero-title span {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letterDrop 0.7s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-title span:nth-child(1) { animation-delay: 0.05s; }
.hero-title span:nth-child(2) { animation-delay: 0.13s; }
.hero-title span:nth-child(3) { animation-delay: 0.21s; }
.hero-title span:nth-child(4) { animation-delay: 0.29s; }
.hero-title span:nth-child(5) { animation-delay: 0.37s; }
.hero-title span:nth-child(6) { animation-delay: 0.45s; }
.hero-title span:nth-child(7) { animation-delay: 0.53s; }
.hero-title span:nth-child(8) { animation-delay: 0.61s; }

/* ── HERO CONTENT ENTRANCE ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow  { animation: fadeInLeft 0.55s ease both 0.65s; }
.hero-tagline  { animation: fadeUp    0.55s ease both 0.85s; }
.hero-actions  { animation: fadeUp    0.55s ease both 1.05s; }
.hero-quick    { animation: fadeUp    0.55s ease both 1.25s; }

/* ── HERO CARD FLOAT ── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero-right { animation: fadeUp 0.7s ease both 0.5s; }
.hero-card  { animation: heroFloat 7s ease-in-out infinite 1.5s; }

/* ── CTA PULSIERENDER GLOW ── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(124,58,237,.35); }
  50%       { box-shadow: 0 6px 40px rgba(124,58,237,.75), 0 0 0 12px rgba(124,58,237,.07); }
}
.hero-actions .btn-primary {
  animation: ctaPulse 2.8s ease-in-out infinite 1.5s;
}

/* ── SECTION TAG GLOW PULSE ── */
@keyframes tagGlow {
  0%, 100% { box-shadow: 0 2px 10px rgba(124,58,237,.28); }
  50%       { box-shadow: 0 4px 22px rgba(236,72,153,.55); }
}
.section-tag { animation: tagGlow 4s ease-in-out infinite; }

/* ── FOTO-BREAK OVERLAY BEWEGT SICH ── */
@keyframes photoShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.photo-break-overlay {
  background: linear-gradient(
    135deg,
    rgba(124,58,237,.55) 0%,
    rgba(236,72,153,.35) 50%,
    rgba(124,58,237,.55) 100%
  );
  background-size: 200% 200%;
  animation: photoShift 7s ease-in-out infinite alternate;
}

/* ── EVENT NUMBER HOVER GROW ── */
.event-nr { transition: transform 0.25s cubic-bezier(.22,.68,0,1.4); }
.event-item:hover .event-nr { transform: scale(1.18) translateX(3px); }

/* ── RIPPLE EFFEKT ── */
.ripple {
  position: absolute;
  border-radius: 50%;
  width: 12px; height: 12px;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: rippleAnim 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(28); opacity: 0; }
}

/* ── REDUCED MOTION: ALLE NEUEN ANIMATIONEN AUS ── */
@media (prefers-reduced-motion: reduce) {
  .hero-title span,
  .hero-eyebrow, .hero-tagline, .hero-actions, .hero-quick,
  .hero-right, .hero-card,
  .hero-actions .btn-primary,
  .hero-eagle,
  .preis-highlight,
  .section-tag,
  .photo-break-overlay { animation: none !important; }
  .hero-actions .btn-primary { box-shadow: 0 2px 12px rgba(124,58,237,.35); }
  .event-nr { transition: none !important; }
  .section-header h2::after { transition: none !important; width: 36px !important; }
}

/* ============================================================
   ADLER SVG
   ============================================================ */

/* Nav-Adler */
.nav-eagle {
  width: 36px; height: auto; flex-shrink: 0;
  filter: invert(1) sepia(1) saturate(8) hue-rotate(248deg) brightness(2.5);
}

/* Hero-Adler – großes dekoratives Hintergrundelement */
@keyframes eagleFloat {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%       { transform: rotate(-3deg) translateY(-18px); }
}

.hero-eagle {
  position: absolute;
  bottom: -6%;
  right: -8%;
  width: 62%;
  max-width: 700px;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
  animation: eagleFloat 9s ease-in-out infinite;
}
.hero-eagle svg { width: 100%; height: auto; display: block; }
.hero-eagle img {
  width: 100%; height: auto; display: block;
  filter: invert(1) sepia(1) saturate(8) hue-rotate(248deg) brightness(2.5) drop-shadow(0 0 60px rgba(124,58,237,.6));
}

/* Footer-Adler */
.footer-eagle-svg {
  width: 150px;
  height: auto;
  opacity: 0.7;
  display: block;
  margin-bottom: 14px;
  filter: invert(1) sepia(1) saturate(8) hue-rotate(248deg) brightness(2.5);
}

/* Equipment-Foto */
.equip-photo-wrap {
  border: 2px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  height: 320px;
  position: relative;
  background: var(--surface);
}
.equip-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.equip-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.2);
  z-index: 0;
}

/* Photo-Break Bild */
.photo-break-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* About-Foto – Platzhalter bleibt sichtbar bis Foto geladen */
.about-photo .photo-placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-eagle { width: 90%; right: -18%; opacity: 0.07; }
  .equip-photo-wrap { height: 220px; }
  .footer-eagle-svg { width: 110px; }
}
@media (max-width: 480px) {
  .hero-eagle { width: 100%; right: -20%; }
  .equip-photo-wrap { height: 180px; }
}

/* ── Availability Calendar (Booking Page) ── */
.avail-cal-wrap {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.avail-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.avail-cal-nav span {
  font-weight: 700;
  font-size: 0.95rem;
}

.avail-nav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--purple);
  font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
  line-height: 1;
}
.avail-nav-btn:hover { background: var(--surface); border-color: var(--purple); }

.avail-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.avail-weekdays span {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: 4px 0;
}

#avail-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.avail-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background .12s, transform .1s;
  min-height: 36px;
}

.avail-cell.empty   { background: transparent; }
.avail-cell.past    { color: var(--text-muted); opacity: .4; cursor: not-allowed; background: transparent; }
.avail-cell.taken   { background: rgba(239,68,68,.12); color: #EF4444; cursor: not-allowed; text-decoration: line-through; }
.avail-cell.free    { background: rgba(16,185,129,.08); color: #059669; cursor: pointer; }
.avail-cell.free:hover { background: rgba(16,185,129,.18); transform: scale(1.05); }
.avail-cell.weekend.free { background: rgba(124,58,237,.07); color: var(--purple); }
.avail-cell.weekend.free:hover { background: rgba(124,58,237,.15); }
.avail-cell.partial { background: rgba(245,158,11,.1); color: #FCD34D; cursor: pointer; }
.avail-cell.partial:hover { background: rgba(245,158,11,.2); transform: scale(1.05); }
.avail-cell.sel     { background: var(--purple) !important; color: #fff !important; transform: scale(1.05); }

.avail-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.avail-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.avail-dot.free    { background: rgba(16,185,129,.3); border: 1px solid #10B981; }
.avail-dot.taken   { background: rgba(239,68,68,.2);  border: 1px solid #EF4444; }
.avail-dot.partial { background: rgba(245,158,11,.3); border: 1px solid #F59E0B; }

.avail-selected-label {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  min-height: 22px;
}
.avail-selected-label.active { color: #059669; }
