/*
Theme Name: Frau Manfred
Theme URI: https://fraumanfred.de
Author: Frau Manfred
Description: Dark Club Theme für Frau Manfred, Mönchengladbach. Optimiert für Elementor.
Version: 1.0
License: Private
Text Domain: fraumanfred
*/

/* ============================================================
   CSS VARIABLES — Dark Club Theme
   ============================================================ */
:root {
  --bg:           #0a0a0a;
  --fg:           #fafafa;
  --card:         #141414;
  --card-fg:      #fafafa;
  --primary:      #c9ff00;
  --primary-fg:   #0a0a0a;
  --secondary:    #1a1a1a;
  --secondary-fg: #fafafa;
  --muted:        #1a1a1a;
  --muted-fg:     #a1a1a1;
  --border:       #262626;
  --destructive:  #ff4444;
  --radius:       0.625rem;
  --shadow-primary: 0 0 20px rgba(201, 255, 0, 0.3);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #262626; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 255, 0, 0.3); }
  50%       { box-shadow: 0 0 40px rgba(201, 255, 0, 0.5); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.animate-fade-in-up  { animation: fade-in-up 0.8s ease-out forwards; }
.animate-pulse-glow  { /* deaktiviert — kein Endlos-Blinken */ }
.animate-pulse       { /* deaktiviert */ }
.animate-bounce      { animation: bounce 1.5s ease-in-out infinite; }

/* ============================================================
   UTILITIES
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, #c9ff00 0%, #ffffff 50%, #c9ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(201, 255, 0, 0.1);
  border: 1px solid rgba(201, 255, 0, 0.2);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border: 1px solid var(--primary);
}
.btn-primary:hover { background: rgba(201, 255, 0, 0.85); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(201, 255, 0, 0.5);
}
.btn-outline:hover { background: rgba(201, 255, 0, 0.1); border-color: var(--primary); }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}
.badge-primary { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.badge-outline  { border-color: rgba(201, 255, 0, 0.3); color: var(--primary); background: transparent; }
.badge-danger   { background: rgba(255, 68, 68, 0.2); color: var(--destructive); border-color: rgba(255, 68, 68, 0.3); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s;
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .nav-inner { height: 80px; padding: 0 2rem; } }

.nav-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  margin-top: 14px;
}
@media (min-width: 768px) { .nav-logo img { height: 34px; margin-top: 18px; } }

/* Footer Logo */
.footer-logo-link { display: inline-block; }
.footer-logo-img  { height: 36px; width: auto; object-fit: contain; display: block; }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a,
.nav-dropdown-toggle {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a:hover,
.nav-dropdown-toggle:hover { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 80%; }

/* ── Dropdown "MEHR" ──────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-dropdown-arrow {
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(14,14,14,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 300;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: rgba(201,255,0,0.1); color: var(--primary); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .nav-cta { display: flex; } }

/* Social Icons im Nav (Instagram, TikTok, Facebook) */
.nav-social-icon {
  padding: 0.5rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-social-icon:hover { color: var(--primary); }
.nav-social-icon svg[fill="currentColor"] { fill: var(--muted-fg); transition: fill 0.2s; }
.nav-social-icon:hover svg[fill="currentColor"] { fill: var(--primary); }

/* Mobile Social Links */
.mobile-social-link {
  padding: 0.5rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.mobile-social-link:hover { color: var(--primary); }
.mobile-social-link svg[fill="currentColor"] { fill: var(--muted-fg); transition: fill 0.2s; }
.mobile-social-link:hover svg[fill="currentColor"] { fill: var(--primary); }

/* Footer TikTok fill-Icon */
.footer-social-link svg[fill="currentColor"] { fill: var(--muted-fg); transition: fill 0.2s; }
.footer-social-link:hover svg[fill="currentColor"] { fill: var(--primary); }

/* Mobile Menu Toggle */
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--fg);
}
@media (min-width: 768px) { .nav-mobile-toggle { display: none; } }

/* ── Mobile Touch-Ziele: Mindestgröße 44×44px (Apple HIG / WCAG) ── */
@media (max-width: 767px) {
  .mobile-nav-link,
  .mobile-nav-group-toggle {
    min-height: 44px;
  }
  .mobile-social a {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }
  .btn {
    min-height: 44px;
  }
  .photo-action-btn,
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    min-width: 44px;
    min-height: 44px;
  }
  /* WhatsApp Float Button: größeres Touch-Ziel */
  .whatsapp-float-link {
    width: 56px;
    height: 56px;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.mobile-drawer.open { display: block; }

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.mobile-drawer-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(320px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-drawer-header img { height: 36px; width: auto; }
.mobile-drawer-logo { display: flex; align-items: center; }
.mobile-drawer-logo .custom-logo-link { display: block; line-height: 0; }
.mobile-drawer-logo .custom-logo { height: 36px; width: auto; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.mobile-nav-links a:hover { color: var(--primary); background: var(--secondary); }
.mobile-nav-sublink {
  padding-left: 1.75rem !important;
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.7) !important;
}
.mobile-nav-sublink:hover { color: var(--primary) !important; }

/* Mobile Mehr-Gruppe */
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: inherit;
  transition: color 0.2s;
}
.mobile-nav-group-toggle:hover { color: var(--primary); background: var(--secondary); }
.mobile-nav-group-toggle svg { transition: transform 0.2s; }
.mobile-nav-group-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav-group-items { display: none; flex-direction: column; gap: 0.25rem; }
.mobile-nav-group-items.open { display: flex; }

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-social a {
  padding: 0.5rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.mobile-social a:hover { color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/wp-content/themes/fraumanfred/images/header-rumbateca.jpg');
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, transparent 50%, rgba(10,10,10,0.8) 100%);
}

.hero-blob-1 {
  position: absolute;
  top: 25%;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 255, 0, 0.08);
  border-radius: 50%;
  filter: blur(128px);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: 25%;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 255, 0, 0.04);
  border-radius: 50%;
  filter: blur(128px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--secondary);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.hero-ping {
  position: relative;
  width: 8px;
  height: 8px;
}
.hero-ping::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.75;
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
.hero-ping::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
}

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-h1 span:first-child { display: block; }
.hero-h1 span:last-child  { display: block; margin-top: 0.5rem; }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.hero-subtitle strong { color: var(--fg); }

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .hero-meta { flex-direction: row; justify-content: center; gap: 2rem; }
}
.hero-meta-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta-item svg { color: var(--primary); }
.hero-divider { display: none; width: 1px; height: 1rem; background: var(--border); }
@media (min-width: 640px) { .hero-divider { display: block; } }

/* Countdown */
.hero-countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .countdown { gap: 0.75rem; } }

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  padding: 0.5rem 0.75rem;
  min-width: 52px;
}

.countdown-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 640px) { .countdown-value { font-size: 2rem; } }

.countdown-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

.countdown-sep {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; justify-content: center; } }

/* Stars */
.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.stars { display: flex; gap: 2px; }
.stars svg { color: var(--primary); fill: var(--primary); }
.hero-stars-text { font-size: 0.875rem; color: var(--muted-fg); }
.hero-stars-text strong { color: var(--fg); }

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: background 0.2s;
}
.stat-icon:hover { background: rgba(201, 255, 0, 0.2); }
.stat-icon svg { color: var(--primary); }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.25rem; }

/* Hero Overlays: pointer-events none damit Scroll-Indicator klickbar ist */
.hero-overlay,
.hero-gradient { pointer-events: none; }

/* Eingebettetes Hero-Video unterhalb des Titels */
.hero-inline-video {
  max-width: 700px;
  margin: 1.5rem auto;
  border-radius: calc(var(--radius) * 1.8);
  overflow: hidden;
  border: 1px solid rgba(201,255,0,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.hero-inline-video video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  animation: bounce 2s ease-in-out infinite;
  text-decoration: none;
}
.hero-scroll:hover { color: var(--primary); }
.hero-scroll span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
#events { padding: 6rem 0; }
@media (min-width: 768px) { #events { padding: 8rem 0; } }

.events-header { text-align: center; margin-bottom: 4rem; }

/* Featured Event */
.featured-event {
  margin-bottom: 5rem;
  border: 1px solid rgba(201, 255, 0, 0.3);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  background: var(--card);
  transition: border-color 0.3s;
}

.featured-event-image {
  position: relative;
  width: 100%;
  height: 22rem; /* etwas höher für bessere Darstellung */
  overflow: hidden;
}
.featured-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Bild-Fokus oben-mitte — anpassbar per inline style */
  transition: transform 0.5s;
  image-rendering: high-quality;
}
.featured-event:hover .featured-event-image img { transform: scale(1.03); }
.featured-event-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, rgba(20,20,20,0.4) 50%, transparent 100%);
}

.featured-event-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .featured-event-body { grid-template-columns: auto 1fr auto; align-items: center; padding: 3rem; }
}

.event-date-stack { text-align: center; }
@media (min-width: 768px) { .event-date-stack { text-align: left; } }
.event-date-day  { font-size: 3.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.event-date-dow  { font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.05em; }
.event-date-mon  { font-size: 1.125rem; font-weight: 500; color: var(--muted-fg); }

.event-info { flex: 1; }
.event-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.event-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
@media (min-width: 768px) { .event-title { font-size: 2.5rem; } }
.featured-event:hover .event-title { color: var(--primary); }
.event-description { font-size: 1.25rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
.event-meta { display: flex; align-items: center; gap: 1rem; font-size: 1.25rem; margin-bottom: 1rem; }
.event-price { font-weight: 700; color: var(--primary); }
.event-time  { color: var(--muted-fg); }
.event-vibes { font-size: 1.75rem; }

/* Ticket Progress Bar */
.ticket-progress { margin-bottom: 1rem; }
.ticket-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.ticket-progress-header span:last-child { font-weight: 600; color: var(--destructive); }
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--destructive);
  border-radius: 9999px;
  transition: width 0.3s;
}
.progress-fill.ok { background: var(--primary); }

.featured-event-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 160px;
}
.featured-event-cta .btn { justify-content: center; }
.event-genre-label { text-align: center; font-size: 0.875rem; color: var(--muted-fg); }

/* Genre Filter */
.genre-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-fg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover  { border-color: rgba(201, 255, 0, 0.5); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: rgba(201, 255, 0, 0.5); }
.event-card.sold-out { opacity: 0.75; }

.event-card-image {
  position: relative;
  width: 100%;
  height: 10rem;
  overflow: hidden;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.event-card:hover .event-card-image img { transform: scale(1.05); }
.event-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, transparent 100%);
}

.event-card-header {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.event-card-date {
  width: 80px;
  background: var(--secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  flex-shrink: 0;
}
.card-date-dow { font-size: 0.75rem; font-weight: 500; color: var(--muted-fg); text-transform: uppercase; }
.card-date-day { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.card-date-mon { font-size: 0.875rem; color: var(--muted-fg); }

.event-card-info { flex: 1; padding: 1rem; }
.event-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; }
.event-card-title { font-size: 1.125rem; font-weight: 700; transition: color 0.2s; margin-bottom: 0.25rem; }
.event-card:hover .event-card-title { color: var(--primary); }
.event-card-edition { font-size: 0.75rem; color: var(--primary); font-weight: 500; margin-bottom: 0.5rem; }
.event-card-meta { display: flex; justify-content: space-between; align-items: center; }
.event-card-time { font-size: 0.875rem; color: var(--muted-fg); }
.event-card-price { font-size: 1.125rem; font-weight: 700; color: var(--primary); }

.urgency-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.urgency-badge.critical { color: var(--destructive); }
.urgency-badge.low      { color: #fb923c; }

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-top: 1px solid var(--border);
}
.event-card-vibes { font-size: 1.25rem; }
.event-card-actions { display: flex; gap: 0.5rem; }

/* Events Bottom CTA */
.events-bottom-cta {
  margin-top: 4rem;
  text-align: center;
}
.events-cta-card {
  background: linear-gradient(135deg, rgba(201,255,0,0.1) 0%, var(--secondary) 100%);
  border: 1px solid rgba(201, 255, 0, 0.2);
  border-radius: calc(var(--radius) * 1.4);
  padding: 3rem 2rem;
}
.events-cta-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.events-cta-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.events-cta-text { color: var(--muted-fg); max-width: 32rem; margin: 0 auto 1.5rem; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
#social-proof {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
#social-proof::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: rgba(201, 255, 0, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.social-proof-header { text-align: center; margin-bottom: 4rem; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .comparison-grid { grid-template-columns: repeat(2, 1fr); } }

.comparison-card { padding: 2rem; border-radius: calc(var(--radius) * 1.4); }
.comparison-card.without { background: var(--card); border: 1px solid rgba(255,68,68,0.2); }
.comparison-card.with {
  background: linear-gradient(135deg, rgba(201,255,0,0.1) 0%, var(--card) 100%);
  border: 1px solid rgba(201, 255, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.comparison-card.with::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: rgba(201, 255, 0, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.comparison-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comparison-icon.x  { background: rgba(255,68,68,0.1); }
.comparison-icon.ok { background: rgba(201,255,0,0.2); }
.comparison-title { font-size: 1.25rem; font-weight: 700; }
.comparison-title.muted { color: var(--muted-fg); }
.comparison-title.primary { color: var(--primary); }

.comparison-list { display: flex; flex-direction: column; gap: 0.75rem; }
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.comparison-item.bad  { color: var(--muted-fg); }
.comparison-item.good { color: var(--fg); font-weight: 500; }
.comparison-item svg { flex-shrink: 0; margin-top: 1px; }
.comparison-item.bad  svg { color: var(--destructive); }
.comparison-item.good svg { color: var(--primary); }

/* Location Banner */
.location-banner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
}
.location-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .location-banner-grid { grid-template-columns: 1fr 1fr; } }

.location-info { padding: 2rem; }
.location-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.location-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.location-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); }
.location-detail svg { color: var(--primary); flex-shrink: 0; }
.location-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.location-visual {
  display: none;
  background: linear-gradient(135deg, rgba(201,255,0,0.15) 0%, var(--secondary) 100%);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .location-visual { display: flex; } }
.location-visual-days { font-size: 3rem; font-weight: 700; color: var(--primary); }
.location-visual-time { font-size: 1.5rem; font-weight: 700; color: var(--fg); }
.location-visual-note { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }

/* ============================================================
   VIP FLOOR PLAN
   ============================================================ */
#vip { padding: 6rem 0; }

.vip-header { text-align: center; margin-bottom: 4rem; }

.vip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .vip-grid { grid-template-columns: 2fr 1fr; } }

.floor-plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
}
.floor-plan-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.125rem;
}
.floor-plan-card-header svg { color: var(--primary); }

.floor-plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: 0.5rem; }
.legend-dot { width: 16px; height: 16px; border-radius: 4px; border: 2px solid; }
.legend-dot.available { background: rgba(201,255,0,0.2); border-color: var(--primary); }
.legend-dot.selected  { background: var(--primary); border-color: var(--primary); }
.legend-dot.reserved  { background: var(--muted); border-color: var(--muted); opacity: 0.5; }

.floor-plan-stage {
  position: relative;
  background: rgba(26,26,26,0.3);
  border-radius: var(--radius);
  margin: 1.5rem;
  min-height: 400px;
}

.fp-landmark {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
}
.fp-landmark.dj {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  border: 1px solid var(--border);
}
.fp-landmark.dj svg { color: var(--primary); }
.fp-landmark.bar {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: var(--secondary);
  border: 1px solid var(--border);
}
.fp-landmark.bar svg { color: var(--primary); }

.fp-table {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  border: 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: all 0.2s;
  font-size: 0.625rem;
  font-weight: 700;
  cursor: pointer;
}
.fp-table.available {
  background: rgba(201,255,0,0.2);
  border-color: var(--primary);
  color: var(--primary);
}
.fp-table.available:hover { background: rgba(201,255,0,0.3); }
.fp-table.reserved  {
  background: var(--muted);
  border-color: var(--muted);
  opacity: 0.5;
  cursor: not-allowed;
}
.fp-table.pending {
  background: rgba(255, 152, 0, 0.15);
  border-color: #ff9800;
  color: #ff9800;
  cursor: not-allowed;
  animation: fp-pending-pulse 2s ease-in-out infinite;
}
@keyframes fp-pending-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,152,0,0); }
  50%       { box-shadow: 0 0 0 4px rgba(255,152,0,0.2); }
}
.fp-table.selected  {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  box-shadow: 0 0 0 3px rgba(201,255,0,0.45), 0 0 22px rgba(201,255,0,0.55);
  transform: scale(1.1);
  z-index: 2;
}
.fp-table svg { width: 20px; height: 20px; }

.table-details {
  display: none;
  margin: 0 1.5rem 1.5rem;
  padding: 1rem;
  background: rgba(26,26,26,0.5);
  border-radius: var(--radius);
}
.table-details.visible { display: block; }
.table-details-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.table-details-name { font-weight: 700; font-size: 1.125rem; }
.table-details-meta { display: flex; gap: 1rem; font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.25rem; }
.table-features { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.table-feature {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(201,255,0,0.1);
  color: var(--primary);
  border-radius: 9999px;
}

/* Booking Form */
/* ── VIP Event-Picker ────────────────────────────────────── */
.vip-event-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .625rem;
  margin-top: 1.5rem;
}
.vip-event-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .625rem 1.25rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.vip-event-btn:hover { border-color: rgba(201,255,0,.4); }
.vip-event-btn.active {
  background: rgba(201,255,0,.12);
  border-color: var(--primary);
  color: var(--primary);
}
.vip-event-btn.sold-out { opacity: .4; cursor: not-allowed; }
.vip-event-btn-title { font-weight: 700; font-size: .9rem; }
.vip-event-btn-date  { font-size: .75rem; color: var(--muted-fg); }
.vip-event-btn.active .vip-event-btn-date { color: rgba(201,255,0,.7); }
.vip-event-btn-sold  { font-size: .7rem; color: var(--destructive); }

.booking-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  position: sticky;
  top: 6rem;
}
.booking-form-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.125rem;
}

.booking-form-body { padding: 1.5rem; }

.form-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted-fg);
}
.form-placeholder svg { width: 48px; height: 48px; opacity: 0.5; margin: 0 auto 0.75rem; display: block; }

.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-input, .form-select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-select { appearance: none; }

.form-selected-table {
  padding: 0.75rem;
  background: rgba(26,26,26,0.5);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.form-selected-table-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.form-selected-table-name  { font-weight: 700; }

.form-min-consumption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-bottom: 1rem;
}
.form-min-consumption-label { font-weight: 600; }
.form-min-consumption-value { font-size: 1.25rem; font-weight: 700; color: var(--primary); }

.form-hint { font-size: 0.75rem; color: var(--muted-fg); text-align: center; margin-top: 0.5rem; }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
#gallery { padding: 6rem 0; }
.gallery-header { text-align: center; margin-bottom: 4rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px)  { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .photo-grid { grid-template-columns: repeat(6, 1fr); } }

.photo-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .photo-item.featured { grid-column: span 2; grid-row: span 2; }
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder svg { opacity: 0.3; }
.photo-placeholder.v1 { background: linear-gradient(135deg, rgba(201,255,0,0.2), rgba(201,255,0,0.05)); }
.photo-placeholder.v2 { background: linear-gradient(135deg, var(--secondary), var(--bg)); }
.photo-placeholder.v3 { background: linear-gradient(135deg, rgba(201,255,0,0.1), var(--secondary)); }

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-item:hover img { transform: scale(1.05); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-action-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: color 0.2s;
  border: none;
  cursor: pointer;
}
.photo-action-btn:hover { color: var(--primary); }

.photo-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.photo-event { color: white; font-size: 0.875rem; font-weight: 500; }
.photo-likes { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.photo-likes svg { width: 12px; height: 12px; }

.photo-trending {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.gallery-cta {
  margin-top: 3rem;
  text-align: center;
}
.gallery-cta-card {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,255,0,0.1) 0%, var(--secondary) 100%);
  border: 1px solid rgba(201, 255, 0, 0.2);
  border-radius: calc(var(--radius) * 1.4);
  padding: 2rem;
  max-width: 480px;
}
/* Nur das Kamera-Icon oben in der Karte — nicht SVGs inside Buttons */
.gallery-cta-card > svg,
.gallery-cta-card .gallery-top-icon {
  width: 48px; height: 48px;
  color: var(--primary);
  margin: 0 auto 1rem;
  display: block;
}
.gallery-cta-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.gallery-cta-card p  { color: var(--muted-fg); margin-bottom: 1rem; }

/* Instagram/Social Button in Galerie-CTA zentriert */
.gallery-cta-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
/* SVG innerhalb eines Buttons erbt button-Farbe, nicht Primary */
.gallery-cta-card .btn svg {
  width: 16px;
  height: 16px;
  color: inherit;
  margin: 0;
  display: inline-block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-content { max-width: 900px; width: 100%; }
.lightbox-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(201,255,0,0.2), var(--secondary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.lightbox-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.lightbox-footer { display: flex; justify-content: space-between; align-items: center; color: white; }
.lightbox-event { font-size: 1.25rem; font-weight: 700; }
.lightbox-date  { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.lightbox-actions { display: flex; gap: 0.5rem; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 6rem 0; position: relative; }
#about::before, #about::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 255, 0, 0.05);
  border-radius: 50%;
  filter: blur(128px);
  pointer-events: none;
}
#about::before { top: 50%; left: 0; transform: translateY(-50%); }
#about::after  { bottom: 0; right: 0; }

.about-header { text-align: center; margin-bottom: 4rem; position: relative; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 6rem;
  position: relative;
}
@media (min-width: 768px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(201, 255, 0, 0.3); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(201, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.feature-card:hover .feature-icon { background: rgba(201, 255, 0, 0.2); }
.feature-icon svg { color: var(--primary); }
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.feature-card:hover .feature-title { color: var(--primary); }
.feature-desc { color: var(--muted-fg); }

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; } }

.story-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1.5rem; }

.story-text { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-fg); }

.story-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: calc(var(--radius) * 2);
  background: linear-gradient(135deg, rgba(201,255,0,0.2) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-visual-text { text-align: center; padding: 2rem; }
.story-visual-hashtag { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.story-visual-sub { font-size: 1.25rem; color: var(--muted-fg); }
.story-glow-1 {
  position: absolute;
  top: -1rem; right: -1rem;
  width: 6rem; height: 6rem;
  background: rgba(201,255,0,0.2);
  border-radius: 50%;
  filter: blur(2rem);
}
.story-glow-2 {
  position: absolute;
  bottom: -1rem; left: -1rem;
  width: 8rem; height: 8rem;
  background: rgba(201,255,0,0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--secondary);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 40px; width: auto; }
.footer-tagline { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: all 0.2s;
}
.footer-social-link:hover { border-color: var(--primary); color: var(--primary); }

.footer-nav h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
}
.footer-nav-list a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-nav-list a:hover { color: var(--primary); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span.danger { color: var(--destructive); }

.footer-newsletter p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 0.875rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-submit {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.newsletter-submit:hover { background: rgba(201, 255, 0, 0.85); }
.newsletter-hint { font-size: 0.75rem; color: var(--muted-fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-copy { font-size: 0.875rem; color: var(--muted-fg); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
/* WhatsApp-Button als direkter Link (kein Popup) */
.whatsapp-float-link {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50; /* niedrig genug um keine Klicks zu blockieren */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.whatsapp-float-link:hover { background: #1ebe5a; transform: scale(1.08); }
.whatsapp-float-link:active { transform: scale(0.95); }
.whatsapp-float-link svg { position: relative; z-index: 1; }

/* Legacy — nicht mehr genutzt aber zur Sicherheit behalten */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-tooltip {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1rem;
  max-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  position: relative;
  animation: fade-in-up 0.3s ease-out;
}
.whatsapp-tooltip.visible { display: block; }
.whatsapp-tooltip-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: var(--muted-fg);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px;
}
.whatsapp-tooltip-close:hover { color: var(--fg); }
.whatsapp-tooltip-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.whatsapp-tooltip-text { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.5; margin-bottom: 0.75rem; }
.whatsapp-tooltip-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #25D366;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) * 1.4);
  transition: background 0.2s;
}
.whatsapp-tooltip-btn:hover { background: #1ebe5a; }

.whatsapp-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-dismiss {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.whatsapp-dismiss:hover { opacity: 1; }

.whatsapp-btn {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
}
.whatsapp-btn:hover { background: #1ebe5a; transform: scale(1.05); }
.whatsapp-btn:active { transform: scale(0.95); }

.whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.25;
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
.whatsapp-btn svg { position: relative; z-index: 1; }

/* ============================================================
   HERO FULLSCREEN SLIDER
   ============================================================ */

/* Container */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Track — horizontales Flex-Layout */
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Einzelner Slide */
.slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Video im Slide */
.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlays */
.slide-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.slide-overlay--gradient {
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.55) 60%,
    rgba(10,10,10,0.85) 100%
  );
}
.slide-overlay--event {
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.60) 50%,
    rgba(10,10,10,0.30) 100%
  );
}

/* Inhalt zentriert (Video-Slide) */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2rem 4rem;
}
@media (min-width: 768px) {
  .slide-content { padding: 0 4rem 5rem; }
}
@media (min-width: 1280px) {
  .slide-content { padding: 0 6rem 5rem; }
}

.slide-content--center {
  align-items: center;
  text-align: center;
  padding-top: 100px;
  justify-content: center;
}

/* Hero Title im Video-Slide */
.hero-slider .hero-h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-slider .hero-h1 span:first-child { display: block; color: var(--fg); }
.hero-slider .hero-h1 span:last-child  { display: block; margin-top: 0.4rem; }

/* Event-Slide — zentriert */
.slide-content--event {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 5rem;
}
@media (max-width: 639px) {
  .slide-content--event {
    padding-bottom: 3.5rem;
    justify-content: flex-end;
  }
}

.slide-event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.slide-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-fg);
}
.slide-tag--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
}

.slide-event-title {
  font-size: clamp(1.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

.slide-event-lineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem .6rem;
  margin-bottom: .6rem;
}
.slide-event-lineup span {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: .04em;
}
.slide-event-lineup span:not(:last-child)::after {
  content: ' ·';
  margin-left: .4rem;
  opacity: .5;
}

.slide-event-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
@media (max-width: 639px) {
  .slide-event-meta { margin-bottom: .875rem; font-size: .8rem; }
}

.slide-event-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
@media (max-width: 639px) {
  .slide-event-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .slide-event-btns .btn {
    width: 100%;
    justify-content: center;
  }
}
.slide-btn {
  font-size: .95rem !important;
}

/* Datum-Stack — auf Mobile verstecken, Desktop links unten */
.slide-date-stack {
  position: absolute;
  left: 2rem;
  bottom: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: .75;
}
@media (max-width: 639px) {
  .slide-date-stack { display: none; }
}
@media (min-width: 768px) {
  .slide-date-stack { left: 2.5rem; }
}
.slide-date-dow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}
.slide-date-day {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.slide-date-mon {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}

/* Overlay auf Mobile dunkler für bessere Lesbarkeit */
@media (max-width: 639px) {
  .slide-overlay--event {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.45) 0%,
      rgba(10,10,10,0.65) 40%,
      rgba(10,10,10,0.92) 100%
    );
  }
}

/* Navigation Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,10,10,.5);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  backdrop-filter: blur(6px);
}
.slider-btn:hover {
  background: rgba(201,255,0,.15);
  border-color: rgba(201,255,0,.5);
  color: var(--primary);
}
.slider-btn--prev { left: 1.5rem; }
.slider-btn--next { right: 1.5rem; }
@media (max-width: 639px) {
  .slider-btn { width: 38px; height: 38px; }
  .slider-btn--prev { left: .6rem; }
  .slider-btn--next { right: .6rem; }
  .slider-btn svg { width: 20px; height: 20px; }
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.slider-dot.active, .slider-dot:hover {
  background: var(--primary);
  transform: scale(1.3);
}

/* Stats im Slider kompakter */
.hero-slider .hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
.hero-slider .stat-item { text-align: center; }
.hero-slider .stat-value { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.hero-slider .stat-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* Countdown im Slider */
.hero-slider .countdown { margin: 1rem auto 1.5rem; }
.hero-slider .hero-countdown-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}

/* Hero BG Fallback */
.hero-slider .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/header-rumbateca.jpg');
  background-size: cover;
  background-position: center;
}

/* ============================================================
   FM HERO SECTION (Branding — unterhalb Slider)
   ============================================================ */
.fm-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.fm-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fm-hero-section .hero-bg,
.fm-hero-section .hero-overlay,
.fm-hero-section .hero-gradient,
.fm-hero-section .hero-blob-1,
.fm-hero-section .hero-blob-2 {
  z-index: 1;
}
.fm-hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem 4rem;
}

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Auf kleinen Geräten (<768px) Video ausblenden → dann läuft das poster-Bild */
@media (max-width: 767px) {
  .hero-video {
    display: none;
  }
  /* Fallback-Bild auf Mobile wenn kein .hero-bg vorhanden */
  #home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/header-rumbateca.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
}

/* ============================================================
   TICKETS / WIZTIX SECTION
   ============================================================ */
.wiztix-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.8);
  overflow: hidden;
  min-height: 200px;
}

/* Zeigt wenn kein echter Embed vorhanden */
.wiztix-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(201,255,0,0.05) 0%, var(--card) 100%);
  border: 2px dashed rgba(201, 255, 0, 0.2);
  border-radius: calc(var(--radius) * 1.8);
}

.wiztix-placeholder-inner {
  max-width: 500px;
}

/* Sobald echter Wiztix-Code eingebettet ist, Placeholder ausblenden */
.wiztix-wrapper iframe,
.wiztix-wrapper script + div,
.wiztix-wrapper [data-wiztix] {
  display: block;
  width: 100%;
  min-height: 600px;
  background: transparent;
}

/* ============================================================
   SVG ICONS (inline)
   ============================================================ */
svg { display: inline-block; vertical-align: middle; }

/* ============================================================
   KONTAKT
   ============================================================ */

/* Schnell-Kontakt Kacheln */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .contact-quick-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-quick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.contact-quick-card:hover { border-color: rgba(201,255,0,.4); transform: translateY(-2px); }
.contact-quick-card--wa   { border-color: rgba(37,211,102,.3); }
.contact-quick-card--wa:hover { border-color: #25D366; }

.contact-quick-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,255,0,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-quick-card--wa .contact-quick-icon { background: rgba(37,211,102,.15); color: #25D366; }
.contact-quick-title { font-weight: 600; font-size: .9rem; }
.contact-quick-sub   { font-size: .75rem; color: var(--muted-fg); margin-top: 2px; }

/* Haupt-Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-main-grid { grid-template-columns: 1fr 1.5fr; }
}

/* Info-Spalte */
.contact-info-col { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-block { }
.contact-info-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .875rem;
}
.contact-info-block p { color: var(--muted-fg); line-height: 1.6; }

/* Öffnungszeiten */
.contact-hours-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.contact-hours-table td { padding: .375rem 0; }
.contact-hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-open td  { color: var(--fg); }
.hours-open td:last-child { color: var(--primary); }
.hours-closed td { color: var(--muted-fg); }

/* ============================================================
   JOBS
   ============================================================ */
.jobs-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 60%);
  overflow: hidden;
}
.jobs-hero::before {
  content: '';
  position: absolute;
  top: -10rem; right: -10rem;
  width: 40rem; height: 40rem;
  background: rgba(201,255,0,.04);
  border-radius: 50%;
  pointer-events: none;
}
.jobs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10,10,10,.5));
  pointer-events: none;
}
.jobs-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
}

/* Job Card */
.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  transition: border-color .2s;
}
.job-card:hover { border-color: rgba(201,255,0,.35); }
.job-card--featured { border-color: rgba(201,255,0,.4); }
.job-card--filled { opacity: .6; }
.job-card.job-open { border-color: var(--primary); }

.job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background .2s;
  user-select: none;
}
.job-card-header:hover { background: rgba(201,255,0,.03); }
.job-card.job-open .job-card-header { background: rgba(201,255,0,.05); }

.job-card-left { flex: 1; min-width: 0; }

.job-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 9999px;
  margin-bottom: .5rem;
}
.job-badge--hot { background: var(--primary); color: var(--primary-fg); }

.job-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
  transition: color .2s;
}
.job-card.job-open .job-card-title { color: var(--primary); }

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 500;
  padding: .2rem .625rem;
  border-radius: 9999px;
  border: 1px solid;
  white-space: nowrap;
}
.job-tag--dept   { background: rgba(201,255,0,.1); color: var(--primary); border-color: rgba(201,255,0,.3); }
.job-tag--type   { background: rgba(100,149,237,.1); color: #93c5fd; border-color: rgba(147,197,253,.3); }
.job-tag--start  { background: var(--secondary); color: var(--muted-fg); border-color: var(--border); }
.job-tag--open   { background: rgba(74,222,128,.1); color: #4ade80; border-color: rgba(74,222,128,.3); }
.job-tag--filled { background: var(--secondary); color: var(--muted-fg); border-color: var(--border); }

.job-chevron {
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform .25s ease, color .2s;
}
.job-card.job-open .job-chevron { transform: rotate(180deg); color: var(--primary); }

/* Job Body (ausgeklappt) */
.job-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.job-card-body-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.job-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) { .job-details-grid { grid-template-columns: 1fr 1fr; } }

.job-section { }
.job-section-title {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-fg);
  margin-bottom: .875rem;
}
.job-prose { color: var(--muted-fg); line-height: 1.7; font-size: .9rem; }
.job-prose p { margin-bottom: .75rem; }

.job-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.job-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--muted-fg);
}
.job-checklist li svg { flex-shrink: 0; margin-top: 1px; }

.job-apply {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.faq-cat-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .875rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all .2s;
  text-decoration: none;
}
.faq-cat-link:hover { border-color: var(--primary); color: var(--primary); }
.faq-cat-count {
  background: var(--secondary);
  border-radius: 9999px;
  padding: 0 .4rem;
  font-size: .7rem;
}

.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .625rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open,
.faq-item:hover { border-color: rgba(201,255,0,.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--card);
  border: none;
  color: var(--fg);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .2s;
}
.faq-question:hover { background: rgba(201,255,0,.04); }
.faq-item.open .faq-question { background: rgba(201,255,0,.06); color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--muted-fg);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--muted-fg);
  line-height: 1.75;
  background: var(--card);
  border-top: 1px solid var(--border);
}
.faq-answer-inner p { margin-bottom: .75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a { color: var(--primary); }

/* ============================================================
   MIET MICH
   ============================================================ */
.rental-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
}
.rental-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.3), rgba(10,10,10,.7));
  pointer-events: none;
}
.rental-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
}

.rental-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.rental-stat {
  text-align: center;
  min-width: 120px;
}
.rental-stat svg { color: var(--primary); margin: 0 auto .5rem; display: block; }
.rental-stat-val { font-size: 1.25rem; font-weight: 700; }
.rental-stat-lbl { font-size: .8rem; color: var(--muted-fg); margin-top: .25rem; }

/* Pakete */
.rental-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .rental-packages { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rental-packages { grid-template-columns: repeat(3, 1fr); } }

.rental-package {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.6);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.rental-package:hover { border-color: rgba(201,255,0,.3); transform: translateY(-2px); }
.rental-package--highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(201,255,0,.07) 0%, var(--card) 100%);
}

.rental-package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-fg);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .875rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.rental-package-name  { font-size: 1.25rem; font-weight: 700; }
.rental-package-price { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.rental-package-meta  { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: var(--muted-fg); }
.rental-package-meta span { background: var(--secondary); padding: .25rem .625rem; border-radius: 9999px; }

.rental-package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.rental-package-features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--muted-fg);
}
.rental-package-features li svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.rental-package--highlight .rental-package-features li svg { color: var(--primary); }

/* Checklisten */
.rental-lists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .rental-lists-grid { grid-template-columns: 1fr 1fr; } }

.rental-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.rental-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--muted-fg);
}
.rental-checklist li svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   LOST & FOUND
   ============================================================ */
.lf-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.lf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px)  { .lf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lf-grid { grid-template-columns: repeat(4, 1fr); } }

.lf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.lf-card:hover { border-color: rgba(201,255,0,.4); transform: translateY(-2px); }
.lf-card.lf-picked-up { opacity: .6; }

.lf-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--secondary);
  overflow: hidden;
  cursor: pointer;
}
.lf-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.lf-card:hover .lf-card-image img { transform: scale(1.05); }

.lf-no-photo {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--bg));
}

.lf-picked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--muted-fg);
}

.lf-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.lf-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}

.lf-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: 9999px;
  border: 1px solid;
  white-space: nowrap;
}
.lf-badge-cat  { background: rgba(201,255,0,.1); color: var(--primary); border-color: rgba(201,255,0,.3); }
.lf-badge-ok   { background: rgba(34,197,94,.1); color: #4ade80; border-color: rgba(34,197,94,.3); }
.lf-badge-done { background: rgba(100,100,100,.15); color: var(--muted-fg); border-color: var(--border); }

.lf-card-title { font-size: .9rem; font-weight: 700; line-height: 1.3; }
.lf-card-desc  { font-size: .8rem; color: var(--muted-fg); line-height: 1.5; }
.lf-card-date  {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: var(--muted-fg);
  margin-top: auto;
}
.lf-card-date svg { color: var(--primary); flex-shrink:0; }

.lf-claim-btn { font-size: .8rem !important; padding: .5rem .75rem !important; }

/* ============================================================
   SINGLE EVENT PAGE
   ============================================================ */

/* Hero */
.ev-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--secondary);
}
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 45%,
    rgba(10,10,10,0.55) 100%
  );
  pointer-events: none;
}
.ev-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 3.5rem;
  width: 100%;
}
.ev-breadcrumb { margin-bottom: 1.5rem; }
.ev-breadcrumb a { font-size:.875rem; color:rgba(255,255,255,.6); transition:color .2s; }
.ev-breadcrumb a:hover { color:var(--primary); }

/* Zwei-Spalten-Grid im Hero */
.ev-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 900px) {
  .ev-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ev-hero-left { display: none; }
  .ev-hero-left:has(p) { display: block; }
}

/* Linke Spalte: Zusatztext */
.ev-hero-left {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ev-hero-left--empty { min-height: 2rem; }
.ev-hero-left p {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
  margin: 0;
}

/* Rechte Spalte: Event-Infos */
.ev-hero-right { }

.ev-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

/* Info Bar — fett + gut lesbar */
.ev-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem 1.25rem;
  margin-bottom: 1.75rem;
}
.ev-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.9);
  background: rgba(0,0,0,.35);
  padding: .35rem .75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}
.ev-info-item svg { color: var(--primary); flex-shrink:0; }

.ev-hero-cta { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:1.5rem; }
.ev-ticket-bar { max-width: 440px; }

/* Layout */
.ev-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .ev-layout { grid-template-columns: 1fr 320px; }
}

/* Content blocks */
.ev-content-block { margin-bottom: 2.5rem; }
.ev-block-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.ev-prose { color: var(--muted-fg); line-height: 1.8; }
.ev-prose p { margin-bottom: 1rem; }

/* Lineup */
.ev-lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.ev-lineup-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-weight: 500;
  transition: border-color .2s;
}
.ev-lineup-item:hover { border-color: var(--primary); }
.ev-lineup-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,255,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-lineup-icon svg { color: var(--primary); }

/* Sidebar */
.ev-sidebar { }
@media (min-width: 1024px) {
  .ev-sidebar { position: sticky; top: 6rem; align-self: start; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONEN
   ============================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .75s ease, transform .75s ease;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal:nth-child(2) { transition-delay: .1s; }
.scroll-reveal:nth-child(3) { transition-delay: .2s; }
.scroll-reveal:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   HOMEPAGE SEKTIONEN (allgemein)
   ============================================================ */
.hp-section {
  padding: 6rem 0;
  position: relative;
}
@media (min-width: 768px) { .hp-section { padding: 8rem 0; } }

.hp-section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: .02em;
}

/* ── Aktuelle Events ─────────────────────────────────────── */
.hp-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 900px) { .hp-events-grid { grid-template-columns: repeat(4, 1fr); } }

.hp-event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.hp-event-card:hover { border-color: rgba(201,255,0,.4); transform: translateY(-3px); }

.hp-event-card-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: transform .5s;
}
.hp-event-card:hover .hp-event-card-img { transform: scale(1.04); }
.hp-event-card-img--empty {
  background: linear-gradient(135deg, rgba(201,255,0,.1), var(--secondary));
}

.hp-event-card-body {
  padding: 1rem;
  display: flex;
  gap: .875rem;
  flex: 1;
}

.hp-event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
  flex-shrink: 0;
}
.hp-dow { font-size: .65rem; text-transform: uppercase; color: var(--muted-fg); font-weight: 600; }
.hp-day { font-size: 1.75rem; font-weight: 700; color: var(--primary); line-height: 1; }
.hp-mon { font-size: .75rem; color: var(--muted-fg); }

.hp-event-card-info h3 { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; line-height: 1.3; }
.hp-event-genre { font-size: .75rem; color: var(--primary); font-weight: 600; margin-bottom: .375rem; }
.hp-event-meta-row { font-size: .75rem; color: var(--muted-fg); display: flex; gap: .5rem; flex-wrap: wrap; }
.hp-event-meta-row span:not(:last-child)::after { content: '·'; margin-left: .5rem; }

/* ── Frau Manfred in Zahlen ──────────────────────────────── */
.hp-zahlen {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-zahlen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) { .hp-zahlen-grid { grid-template-columns: repeat(4, 1fr); } }

.hp-zahl-item { text-align: center; }
.hp-zahl-value {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .5rem;
}
.hp-zahl-label { font-size: .875rem; color: var(--muted-fg); }

/* ── Deine Momente ───────────────────────────────────────── */
.hp-moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .hp-moments-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .hp-moments-grid { grid-template-columns: repeat(6, 1fr); } }

.hp-moment-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.hp-moment-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.hp-moment-item:hover img { transform: scale(1.08); }
.hp-moment-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .6rem .5rem .5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hp-moment-event {
  font-size: .72rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}
.hp-moment-count {
  font-size: .65rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
}

/* ── Soziale Netzwerke ───────────────────────────────────── */
.hp-social {
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hp-social-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/header-rumbateca.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(80%);
}
.hp-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.75);
}
.hp-social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.hp-social-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: all .25s;
  text-decoration: none;
}
.hp-social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
  transform: scale(1.1);
}
.hp-social-icon svg { width: 28px; height: 28px; }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
.elementor-section,
.elementor-container {
  max-width: 100% !important;
}

/* Make sure Elementor pages use our dark background */
.elementor-page #page {
  background: var(--bg);
  color: var(--fg);
}

/* ── Hero Tagline ────────────────────────────────────────── */
.hero-tagline {
  font-size: clamp(.9rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: -.25rem 0 1.25rem;
}

/* ── Mobile Header Logo zentrieren ──────────────────────── */
@media (max-width: 767px) {
  .nav-inner {
    justify-content: center;
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-mobile-toggle {
    position: absolute;
    right: 1rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   GLOBALE RESPONSIVE-FIXES
   Verhindert horizontales Scrollen und sichert korrekte Darstellung
   ══════════════════════════════════════════════════════════════ */
html, body { overflow-x: hidden; }
body { min-width: 0; }

/* Alle Bilder und Videos responsive */
img, video, iframe, embed, object { max-width: 100%; height: auto; }
video { height: auto; }

/* Grid/Flex-Kinder nie breiter als ihr Container */
* { min-width: 0; }

/* ── Navigation — bei mittleren Breiten ─────────────────── */
@media (max-width: 900px) {
  .nav-links { gap: 0; }
  .nav-links a,
  .nav-dropdown-toggle { padding: .5rem .4rem; font-size: .72rem; }
}
@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-mobile-toggle { display: flex !important; }
}

/* ── Hero-Slider ────────────────────────────────────────── */
.hero-slider, .fm-hero-section { width: 100%; max-width: 100%; }
.slider-track { will-change: transform; }

/* ── HP Events Grid — 1 Spalte auf Handy ───────────────── */
@media (max-width: 480px) {
  .hp-events-grid { grid-template-columns: 1fr; }
  .hp-moments-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Events Grid ────────────────────────────────────────── */
@media (max-width: 640px) {
  .events-grid { grid-template-columns: 1fr; }
  .featured-event { flex-direction: column; }
  .featured-event-image { width: 100%; height: 220px; }
}

/* ── VIP Grid ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .vip-grid { grid-template-columns: 1fr; }
  .floor-plan-card { overflow-x: auto; }
}

/* ── Photo Grid ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Page Hero ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .page-hero-title { font-size: 2.25rem; }
  .page-hero { min-height: 36vh; }
}

/* ── Footer Grid ────────────────────────────────────────── */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
  }
  .footer-nav-list a {
    font-size: .8rem;
    white-space: nowrap;
    display: block;
    line-height: 1.5;
  }
}

/* ── VIP WhatsApp Box ───────────────────────────────────── */
@media (max-width: 639px) {
  .vip-wa-box { padding: 1.25rem 1rem; }
  .vip-wa-box p { font-size: .8rem; margin-bottom: .75rem; }
  .vip-wa-box .btn { font-size: .8rem !important; padding: .55rem 1rem; width: 100%; justify-content: center; }
}

/* ── Floor Plan Mobile ──────────────────────────────────── */
@media (max-width: 639px) {
  .floor-plan-card  { overflow: hidden; margin: 0; border-radius: var(--radius); }
  .floor-plan-stage { min-height: 260px !important; min-width: 0 !important; width: 100%; margin: .75rem 0; overflow: hidden; }
  .fp-table         { width: 56px; height: 56px; font-size: 0.6rem; }
  .fp-table svg     { width: 16px; height: 16px; }
  .fp-landmark      { padding: .25rem .5rem; font-size: .6rem; }
  .fp-landmark svg  { width: 16px; height: 16px; }
}

/* ── Miet Mich / Jobs WhatsApp Buttons ──────────────────── */
@media (max-width: 639px) {
  .wa-cta-wrap {
    flex-direction: column;
    align-items: center;
  }
  .wa-cta-wrap .btn {
    font-size: .8rem !important;
    padding: .6rem 1.1rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ── Kontakt Quick-Cards Mobile ─────────────────────────── */
@media (max-width: 639px) {
  .contact-quick-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .contact-quick-card { padding: .875rem .75rem; gap: .6rem; }
  .contact-quick-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .contact-quick-icon svg { width: 16px; height: 16px; }
  .contact-quick-title { font-size: .75rem; }
  .contact-quick-sub   { font-size: .65rem; }
}

/* ── Countdown ──────────────────────────────────────────── */
@media (max-width: 380px) {
  .countdown { gap: .3rem; }
  .countdown-value { font-size: 1.5rem; }
  .countdown-label { font-size: .6rem; }
}

/* ── Buttons overflow ───────────────────────────────────── */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
  .slide-event-btns { flex-direction: column; align-items: center; }
  .slide-event-btns .btn { width: 100%; max-width: 260px; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO — Unterseiten Hintergrundbild / -video
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 767px) { .page-hero { min-height: 42vh; margin-top: 64px; } }

/* Gradient-Fallback wenn kein Bild/Video gesetzt */
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,255,0,0.07) 0%, var(--secondary, #1a1a1a) 100%);
}

/* Hintergrundbild */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hintergrundvideo */
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dunkel-Overlay */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(10,10,10,0.75) 100%);
  z-index: 1;
}
.page-hero--media .page-hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(10,10,10,0.85) 100%);
}

/* Text-Content */
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.page-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Mobile Fixes ─────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Homepage: Logo/Titel etwas tiefer */
  .fm-hero-section .hero-content { padding-top: 9rem; }

  /* VIP + Event: Tischplan kompakter */
  .floor-plan-stage { min-height: 240px !important; }

  /* VIP Grid: Tischplan oben, Formular darunter (stapeln) */
  .vip-grid { grid-template-columns: 1fr !important; }
}
