/* --- VARIABLES & RESET --- */
:root {
  --primary: #ff007f; /* Lara Pink */
  --primary-glow: rgba(255, 0, 127, 0.4);
  --bg-dark: #0a0a0a;
  --bg-card: rgba(30, 30, 30, 0.6);
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

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

a {
  color: #fff;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- NAVIGATION (Sticky & Glassmorphism) --- */
nav {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px); /* Milchglas-Effekt */
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: var(--glass-border);
  padding: 0 20px;
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

nav .logo {
  display: block;
  width: 140px;
  height: 70px;
  background-image: url(./img/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

nav .logo:hover {
  transform: scale(1.05);
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav .nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

/* Unterstrich-Animation beim Hover */
nav .nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--primary);
}

nav .nav-links a:hover, nav .nav-links a.active {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary-glow);
}

nav .nav-links a:hover::after, nav .nav-links a.active::after {
  width: 100%;
}

/* Mobile Toggle (Hidden Desktop) */
.nav-toggle, .nav-toggle-label { display: none; }

/* --- HEADER (Hero Section) --- */
header {
  height: 60vh; /* Etwas höher für mehr Drama */
  min-height: 400px;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* Parallax Effekt */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dunkler Verlauf über dem Bild für Lesbarkeit */
header .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,1) 100%);
  z-index: 1;
}

header .header-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
  animation: fadeIn Up 1s ease-out;
}

header h1 {
  font-family: var(--font-heading);
  font-size: 4rem; /* Größer & Plakativer */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: linear-gradient(45deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255,0,127,0.3));
}

header h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 15px;
  color: #ddd;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- MAIN CONTENT --- */
main {
  max-width: 1000px;
  margin: -50px auto 50px; /* Überlappt den Header leicht */
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

/* Responsive Video Container (16:9) */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 40px;
  border: var(--glass-border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Cards (Glassmorphism Stil) */
.content-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  border: var(--glass-border);
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

main h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* Kleiner Akzent unter Überschrift */
main h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 8px;
  border-radius: 2px;
}

main p {
  color: #ccc;
  font-size: 1.05rem;
  text-align: left; /* Justify liest sich im Web schlecht */
}

main b, .highlight {
  color: #fff;
  font-weight: 600;
}

/* --- BUTTONS --- */
.ctabutton {
  background: linear-gradient(90deg, var(--primary) 0%, #d6006c 100%);
  color: #fff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px; /* Pill Shape */
  display: table;
  margin: 0 auto 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 25px rgba(255, 0, 127, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ctabutton:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 127, 0.5);
}

/* --- FOOTER --- */
footer {
  background-color: #050505;
  border-top: var(--glass-border);
  padding: 50px 0 20px;
  text-align: center;
}

footer .socials {
  margin-bottom: 25px;
}

footer .socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 0 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

footer .socials a:hover {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--primary-glow);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.separator { margin: 0 10px; color: #333; }

.copyright {
  color: #555;
  font-size: 0.8rem;
  margin-top: 30px;
}

/* --- FORM STYLING (für Booking Seite) --- */
form input, form textarea, form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
  font-family: var(--font-body);
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.1);
}

/* --- MOBILE & RESPONSIVE (ehemals mobile.css) --- */
@media (max-width: 768px) {

  header h1 { font-size: 2.5rem; }
  header { height: 50vh; background-attachment: scroll; } /* Kein Parallax auf Mobile */

  nav .container { padding: 0 15px; }

  /* Burger Menu Logic */
  .nav-toggle-label {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: #fff;
    height: 2px;
    width: 100%;
    position: absolute;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .nav-toggle-label span { top: 14px; }
  .nav-toggle-label span::before { content: ''; top: -8px; }
  .nav-toggle-label span::after { content: ''; top: 8px; }

  /* Navigation Drawer */
  nav .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 70%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  nav .nav-links li {
    text-align: center;
    width: 100%;
  }

  nav .nav-links a {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
  }

  /* Checkbox Hack Activation */
  .nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  /* Burger Animation X */
  .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
  .nav-toggle:checked ~ .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }

  main { margin-top: -30px; }
  .content-card { padding: 25px; }
}

/* Animation Helper */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   STYLES FÜR UNTERSEITEN (Fallback & Standards)
   ========================================= */

/* 1. Automatische Karten-Optik für alle Sections
   Damit sehen auch alte Seiten ohne spezielle Klassen sofort modern aus. */
main section:not(.video-section) {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  border: var(--glass-border);
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* 2. Typografie für Fließtexte auf Unterseiten */
main h3 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

main h4 {
  font-family: var(--font-heading);
  color: #ddd;
  font-size: 1.2rem;
  margin-top: 20px;
}

main ul, main ol {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #ccc;
}

main li {
  margin-bottom: 10px;
}

/* 3. Tabellen (Wichtig für 'Dates' oder Tracklists) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #ddd;
}

table th, table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

table th {
  background-color: rgba(255, 0, 127, 0.1); /* Leichtes Pink */
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
}

table tr:hover {
  background-color: rgba(255,255,255,0.05); /* Hover-Effekt für Zeilen */
}

/* 4. Bilder auf Unterseiten (z.B. Galerien) */
main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

/* Speziell für Bilder, die im Text fließen sollen */
.img-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.img-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

/* Clearfix, falls Floats genutzt werden */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* 5. Links im Fließtext (nicht Navigation) */
main p a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s;
}

main p a:hover {
  border-bottom: 1px solid var(--primary);
}

/* =========================================
   MOBILE ANPASSUNGEN FÜR UNTERSEITEN
   ========================================= */
@media (max-width: 768px) {
  table th, table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  /* Falls Tabellen zu breit werden (scrollbar machen) */
  .table-responsive {
    overflow-x: auto;
  }

  main section:not(.video-section) {
    padding: 20px;
  }
}

/* =========================================
   MODERN FORM STYLING (Clean HTML Version)
   ========================================= */

/* 1. Layout Raster (Grid) */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Zwei Spalten */
  gap: 25px; /* Platz zwischen den Feldern */
  margin-top: 30px;
}

/* Elemente, die über die volle Breite gehen (Anschrift, Nachricht, Footer) */
.span-full {
  grid-column: 1 / -1;
}

/* 2. Input Felder Styles */
.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 0.85rem;
  color: var(--primary); /* Pinke Labels */
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 5px;
}

.modern-form input[type="text"],
.modern-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

/* Fokus Effekt */
.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

/* Textarea Resize kontrollieren */
.modern-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* 3. Footer Bereich (Captcha + Button) */
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.captcha-wrapper {
  background: #fff; /* Weisser Rahmen für Captcha, damit man es gut sieht */
  padding: 5px;
  border-radius: 4px;
}

/* Der Button */
.submit-btn {
  background: linear-gradient(90deg, var(--primary) 0%, #d6006c 100%);
  color: #fff;
  border: none;
  padding: 18px 60px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.4);
}

/* 4. Alert Boxen (Fehler / Erfolg) */
.alert {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
}

.alert h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-error {
  background: rgba(194, 10, 18, 0.2); /* Transparentes Rot */
  border-color: #c20a12;
  color: #ffcccc;
}

.alert-error ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alert-error li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.alert-error li::before {
  content: '•';
  color: #c20a12;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.alert-success {
  background: rgba(19, 141, 117, 0.2); /* Transparentes Grün */
  border-color: #138d75;
  color: #d1f2eb;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr; /* Alles untereinander */
    gap: 15px;
  }

  .submit-btn {
    width: 100%;
  }
}
