/* =========================================
   1. FARBEN & VARIABLEN
   ========================================= */
:root {
  --bg0: #050508; /* Sehr dunkles Schwarz/Blau */
  --bg1: #0a0f18; /* Etwas helleres Schwarz/Blau */

  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.10);

  --text: #eaf0ff;
  --muted: rgba(234,240,255,.65);

  --radius: 18px;
  --radius-sm: 14px;

  /* Blau-Töne */
  --brand: #2563eb;       /* Kräftiges Blau */
  --brand2: #00bfff;      /* Helles Blau / Cyan (Glow) */
  --teal: #00d3b6;        /* Akzentfarbe */

  --shadow: 0 10px 30px rgba(0,0,0,.5);
  --shadow2: 0 18px 50px rgba(0,0,0,.6);

  --nav-h: 72px;
}

/* =========================================
   2. GRUNDLAGEN & ÜBERSCHRIFTEN
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg0);
  color: var(--text);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* DEUTLICH GRÖSSERE ÜBERSCHRIFTEN – PROPORTIONAL KORREKT */
h1 {
  font-size: 4.2rem;       /* Richtig schön groß und präsent */
  font-weight: 800;        /* Maximal fett für den massiven Look */
  margin-bottom: 20px;
  letter-spacing: 2px;     /* Nur ein ganz minimaler, edler Abstand */
  text-align: center;
}

h2 {
  font-size: 3rem;         /* Klare, fette Sektions-Überschriften */
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* KNALLIGER TEXT-FARBVERLAUF MIT REINEM NEON-GLOW */
.grad {
  background: linear-gradient(90deg, var(--brand2) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
  font-weight: 800;
}

/* =========================================
   3. NAVIGATION & DROPDOWNS
   ========================================= */
header {
  background-color: var(--bg1);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.brand img {
  height: 40px;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav ul > li > a:not(:last-child) {
  padding: 10px 15px;
  border-radius: 8px;
}

.nav ul > li > a:hover {
  color: var(--brand2);
}

/* Dropdown-Menüs */
.dropdown {
  position: relative;
}

.dropdown .menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  background: #0d1524;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
  
  transition: all 0.25s ease;
}

.dropdown .menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown:hover .menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown .menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--muted);
  display: block;
}

.dropdown .menu a:hover:not([style*="not-allowed"]) {
  background: rgba(37, 99, 235, 0.15);
  color: #fff;
  padding-left: 18px;
  text-shadow: 0 0 5px var(--brand2);
}

/* AUTOMATISCHER BUTTON-STYLE (TICKETS & KONTAKT) */
.nav ul li:last-child a {
  background-color: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  border: none;
}

.nav ul li:last-child a:hover {
  background-color: #1d4ed8;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

#nav-toggle, .burger {
  display: none;
}

/* =========================================
   4. HERO BEREICH & COUNTDOWN (Vollbild Fix)
   ========================================= */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  background-color: var(--bg1);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Zwingt die Box auf die volle Bildschirmbreite ohne Verschiebung! */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Container für den Bildstapel (Slideshow) */
.hero-bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0; 
  transform: scale(1.05);
  animation: imageFade 24s linear infinite; 
}

.slide-img:nth-child(1) { animation-delay: 0s; }
.slide-img:nth-child(2) { animation-delay: 6s; }
.slide-img:nth-child(3) { animation-delay: 12s; }
.slide-img:nth-child(4) { animation-delay: 18s; }

@keyframes imageFade {
  0% { opacity: 0; transform: scale(1.05); }
  4% { opacity: 0.35; }  
  25% { opacity: 0.35; } 
  29% { opacity: 0; transform: scale(1.0); } 
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.75) 0%, rgba(5, 5, 8, 0.50) 50%, rgba(5, 5, 8, 0.85) 100%);
  z-index: 2;
}

/* Kachel für das Medienwerk direkt oben rechts im Hero platziert */
.hero-media-badge {
  position: absolute;
  top: 20px;
  right: 5vw; /* Dynamisch am Rand ausgerichtet */
  z-index: 10;
  font-size: 0.85rem;
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
}
.hero-media-badge span { opacity: 0.6; color: var(--text); }
.hero-media-badge a { color: var(--brand2); font-weight: bold; margin-left: 4px; }
.hero-media-badge a:hover { text-shadow: 0 0 8px var(--brand2); }

.hero-inner { 
  position: relative; 
  z-index: 3; 
  width: 100%; 
  max-width: 1000px; 
  margin: 0 auto; /* Hält den gesamten Inhalt bombenfest zentriert */
}

.lead { max-width: 700px; margin: 20px auto; color: var(--muted); font-size: 1.1rem; }

.countdown { display: flex; justify-content: center; gap: 15px; margin: 40px 0; flex-wrap: wrap; }
.cd-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 15px 25px; min-width: 100px; transition: all 0.3s ease; }
.cd-item:hover { border-color: var(--brand2); box-shadow: 0 0 15px rgba(0, 191, 255, 0.2); transform: translateY(-3px); }
.cd-item span { display: block; font-size: 2.5rem; font-weight: bold; color: var(--brand2); }
.cd-item small { color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.cta-row { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.btn { padding: 12px 24px; border-radius: var(--radius-sm); font-weight: bold; cursor: pointer; transition: all 0.3s ease; display: inline-block; border: none; }
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: #1d4ed8; box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--brand2); border: 1px solid var(--brand2); }
.btn.ghost:hover { background: rgba(0, 191, 255, 0.1); }

/* =========================================
   5. BEREICHE & GALERIE
   ========================================= */
.section-card {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 8, 0.85);
  color: var(--text);
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

/* =========================================
   6. PARTNER / KOOPERATIONEN (STARTSEITE)
   ========================================= */
.partners {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  width: 180px;
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.partner-card img {
  max-width: 80%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: grayscale(100%) opacity(0.8);
  transition: filter 0.3s ease;
}

.partner-card:hover, .partner-card:focus-visible {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--brand);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
  outline: none;
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
}

.partner-fallback {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--muted);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.02);
}

/* =========================================
   7. STORYLINE TIMELINE
   ========================================= */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: 13px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand2);
  box-shadow: 0 0 12px var(--brand2);
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 25px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateX(8px);
  border-color: var(--brand);
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.15);
}

.timeline-meta {
  color: var(--brand2);
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.timeline-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* =========================================
   8. RÜCKBLICK STATISTIKEN
   ========================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.15);
  border-color: var(--brand2);
}

.stat-value {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--brand2);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.stat-label {
  color: var(--muted);
  font-size: 1.1rem;
}

/* =========================================
   9. KONTAKTFORMULAR & FAQ
   ========================================= */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.faq-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.faq-list details:hover {
  border-color: var(--brand2);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none; 
  color: var(--text);
  transition: color 0.3s;
}

.faq-list details[open] summary {
  color: var(--brand2);
  margin-bottom: 10px;
}

.faq-list .answer {
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

footer a {
  color: var(--muted);
  margin: 0 10px;
  font-size: 0.9rem;
}

footer a:hover {
  color: var(--brand2);
}

/* =========================================
   11. TEAM-SEITE GRID & KARTEN
   ========================================= */
.team-section {
  margin-bottom: 60px;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 35px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;      
  justify-content: center;   
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand2);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.2);
}

.team-avatar {
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px; 
  font-size: 3rem;
  color: var(--brand2);
}

.team-card img {
  display: block;
  margin: 0 auto 15px !important; 
}

.team-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  width: 100%;
}

.team-role {
  color: var(--brand2);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  width: 100%;
}

.team-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =========================================
   12. LIGHTBOX (TEAM TEXT-POPUP)
   ========================================= */
.team-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 8, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.team-lightbox:target { display: flex; }
.lightbox-close { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: default; }
.lightbox-box { position: relative; background: var(--bg1); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; max-width: 500px; width: 90%; text-align: center; box-shadow: var(--shadow2); z-index: 10001; }
.lightbox-pop-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; display: block; border: 2px solid var(--brand2); box-shadow: 0 0 15px rgba(0, 217, 255, 0.3); }
.lightbox-box h3 { font-size: 2rem; color: #fff; margin-bottom: 5px; }
.lightbox-box p { color: var(--text); margin-bottom: 25px; font-size: 1.05rem; line-height: 1.6; }

/* =========================================
   13. COMPLETED PARTNER PAGE
   ========================================= */
.partners-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; 
  margin-top: 30px;
}

.partner-page-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  min-height: 220px;
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.partner-page-card img {
  max-width: 85%;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(100%) opacity(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-page-card:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: var(--brand);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.partner-page-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.03);
}

.partner-page-card span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* =========================================
   14. ANREISE SEITE & ABLAUFPLAN
   ========================================= */
.bus-guide-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.bus-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.bus-station-block {
  background: transparent;
  padding: 0;
  border-left: none;
}

.station-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.station-icon {
  font-size: 2rem;
  color: var(--brand2);
}

.station-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.station-header small {
  color: var(--muted);
  font-size: 1rem;
  display: block;
  margin-top: 5px;
}

.line-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.bus-badge {
  display: inline-block;
  padding: 8px 18px;
  font-weight: 800;
  border-radius: 8px;
  font-size: 1rem;
  white-space: nowrap;
  min-width: 150px; 
  text-align: center;
}

.bus-badge.color-blue { background: rgba(0, 82, 255, 0.15); color: #00d9ff; border: 1px solid var(--brand2); }
.bus-badge.color-teal { background: rgba(0, 245, 212, 0.1); color: var(--teal); border: 1px solid var(--teal); }

.line-details {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
}

.line-details strong { color: #fff; }
.line-details p { color: var(--muted); font-size: 1rem; margin-top: 8px; }

/* =========================================
   15. SOCIALS SEITE DASHBOARD
   ========================================= */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; 
  margin-top: 20px;
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 45px 30px; 
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-icon { font-size: 3.5rem; margin-bottom: 20px; color: #fff; transition: transform 0.3s ease; }
.social-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; font-weight: 700; }
.social-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.social-btn {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.25s ease;
  margin-top: auto; 
}

.social-card-link:hover .social-card { transform: translateY(-5px); }
.social-card-link:hover .social-icon { transform: scale(1.1); }

/* Discord Hover */
.discord-hover:hover { border-color: #5865F2; box-shadow: 0 10px 25px rgba(88, 101, 242, 0.2); }
.discord-hover:hover .social-icon { color: #5865F2; }
.discord-hover:hover .social-btn { background: #5865F2; border-color: #5865F2; }

/* Instagram Hover */
.instagram-hover:hover { border-color: #E1306C; box-shadow: 0 10px 25px rgba(225, 48, 108, 0.2); }
.instagram-hover:hover .social-icon { color: #E1306C; }
.instagram-hover:hover .social-btn { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); border-color: transparent; }

/* WhatsApp Hover */
.whatsapp-hover:hover { border-color: #25D366; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2); }
.whatsapp-hover:hover .social-icon { color: #25D366; }
.whatsapp-hover:hover .social-btn { background: #25D366; border-color: #25D366; color: #000; }

/* TikTok Hover */
.tiktok-hover:hover { border-color: #FE2C55; box-shadow: 0 10px 25px rgba(254, 44, 85, 0.2); }
.tiktok-hover:hover .social-icon { color: #FE2C55; }
.tiktok-hover:hover .social-btn { background: #FE2C55; border-color: #FE2C55; }

/* =========================================
   16. MOBILE OPTIMIERUNG (Universal-Fix für Handys)
   ========================================= */
@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 850px) {
  /* Navigation Fix */
  .nav { flex-wrap: wrap; justify-content: space-between; }
  .burger { display: block !important; cursor: pointer; color: #fff; font-weight: 700; padding: 10px; }
  
  .nav nav {
    display: none; 
    width: 100%;
    position: absolute;
    top: var(--nav-h); 
    left: 0;
    background: #050508; 
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .nav ul { flex-direction: column; align-items: center; gap: 20px; }
  #nav-toggle:checked ~ nav { display: block; }

  /* Allgemeine Anpassungen */
  .hero-inner h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .partners-grid .partner-card { width: 140px; }
  
  /* Countdown Startseite */
  .countdown {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px auto;
  }
  .cd-item { margin: 0 !important; width: 100%; }

  /* Buttons */
  .cta-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-row .btn { width: 100%; text-align: center; margin: 0 !important; }
  
  /* Listen (z.B. Anreise) */
  .line-row { flex-direction: column; gap: 12px; }
}

@media (max-width: 650px) {
  /* Sehr kleine Bildschirme */
  .team-grid { grid-template-columns: 1fr; gap: 25px; }
  .socials-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid, .gallery-grid, .partners-page-grid { grid-template-columns: 1fr; }
  .hero-inner h1 { font-size: 1.8rem; }
}
/* =========================================
   LIGHTBOX REPARATUR & MAUSZEIGER-EFFEKT
   ========================================= */
.gallery-item img {
  cursor: pointer; /* Ändert den Zeiger in eine Hand, damit man weiß, dass es klickbar ist */
}

/* Lightbox-Grundgerüst für alle Seiten verfügbar machen[cite: 3] */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000; /* Sehr hoch ansetzen, damit es über allem liegt */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 95%; max-height: 95%; object-fit: contain; border-radius: 8px; box-shadow: 0 0 30px rgba(0,0,0,0.8); }
.lightbox .close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; z-index: 10001; }