/* Keep The Faith - Static Website Styles */
/* DSGVO-compliant self-hosted Poppins font implementation */

/* ---------- Reset & Root ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #f4d03f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000;
  font-weight: 400;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }
h4, h5 { font-weight: 500; }
p { font-family: 'Poppins', sans-serif; font-weight: 400; }

.hero-content h1 { font-weight: 800; }
.section-header h1, .section-header h2 { font-weight: 700; }

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

/* ---------- Navigation ---------- */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
  z-index: 1000; border-bottom: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex !important; justify-content: space-between !important; align-items: center;
  height: 70px;
}
.logo { height: 50px; cursor: pointer; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }

.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a {
  color: #ffffff; text-decoration: none; font-weight: 500;
  transition: color 0.3s ease; position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a::after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
  background-color: var(--gold); transition: width 0.3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.mobile-menu { display: none; }

/* ---------- Social Sidebar (Desktop) ---------- */
.social-sidebar {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 40;
}
.social-sidebar-container {
  background: rgba(17, 24, 39, 0.9); backdrop-filter: blur(8px);
  border-radius: 50px; padding: 16px; border: 1px solid #374151;
  display: flex; flex-direction: column; gap: 16px;
}
.social-sidebar a { transition: all 0.3s ease; text-decoration: none; }
.social-youtube { color: #ef4444; } .social-youtube:hover { color: #dc2626; transform: scale(1.1); }
.social-facebook { color: #3b82f6; } .social-facebook:hover { color: #2563eb; transform: scale(1.1); }
.social-instagram { color: #ec4899; } .social-instagram:hover { color: #db2777; transform: scale(1.1); }

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../assets/hero-bg.jpg');
  background-size: cover; background-position: center 20%; background-attachment: scroll;
  display: flex; align-items: center; justify-content: center; text-align: center; position: relative;
  padding-top: 90px; /* Platz für fixed Header */
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}
.hero-content { position: relative; z-index: 10; max-width: 1000px; padding: 0 20px; }
.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem); margin-bottom: 20px;
  background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: bold; animation: goldShine 3s ease-in-out infinite; text-shadow: none; display: inline-block; line-height: 1.2;
}
@keyframes goldShine { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.hero-content p { font-size: clamp(1rem, 4vw, 1.5rem); margin-bottom: 30px; color: #ccc; font-weight: 300; line-height: 1.5; }
.hero-subtitle {
  font-size: clamp(1.2rem, 5vw, 1.8rem) !important; font-weight: 500 !important; color: #fff !important;
  letter-spacing: 2px; margin-bottom: 40px !important; line-height: 1.3;
}
.hero-video { margin: 40px 0; }

/* Hero-spezifischer Video-Container (NAMESPACED) */
.hero .video-container {
  position: relative; width: 100%; max-width: 1200px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  border: 4px solid #CCAC5C; box-shadow: 0 20px 50px rgba(204, 172, 92, 0.4);
  min-height: 500px;
}
.hero .video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

@media (min-width: 1024px) { .hero .video-container { min-height: 600px; } }
@media (max-width: 768px)  { .hero .video-container { min-height: 250px; border-width: 3px; } }
@media (max-width: 480px)  { .hero .video-container { min-height: 200px; border-width: 2px; border-radius: 15px; } }

.cta-button {
  display: inline-block; padding: 12px 24px; background: #CCAC5C; color: #000;
  text-decoration: none; font-weight: 600; border-radius: 25px; transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(204, 172, 92, 0.3);
  font-size: 0.9rem; border: 2px solid transparent;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(204, 172, 92, 0.5); background: #D8B968; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }

/* ---------- Live-Teaser Section ---------- */
.live-teaser-section {
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9)), url('../assets/teaser.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.teaser-video { max-width: 1200px; margin: 0 auto; }

/* Vereinheitlicht: Grid (statt mix aus Grid/Flex) */
.live-teaser-section .teaser-video .teaser-video-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 900px) {
  .live-teaser-section .teaser-video .teaser-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
.live-teaser-section .teaser-video .video-item { box-sizing: border-box; min-width: 0; }
.live-teaser-section .video-container {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 12px;
}
.live-teaser-section .video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Social Follow (einheitliches Set) */
.social-follow { text-align: center; margin: 40px 0; padding: 20px 0; }
.social-follow h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; }
.social-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; justify-content: center; width: 50px; height: 50px;
  background: rgba(204, 172, 92, 0.1); border: 2px solid var(--gold); border-radius: 50%;
  color: var(--gold); text-decoration: none; transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--gold); color: #000; transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(204, 172, 92, 0.4);
}
.social-link svg { width: 24px; height: 24px; }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h1, .section-header h2 {
  font-size: 3rem;
  background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px; font-weight: bold; display: inline-block;
}
.section-header p { color: #ddd; font-size: 1.2rem; font-weight: 400; line-height: 1.5; margin-top: 20px; }
.section-divider { width: 100px; height: 4px; background: var(--gold); margin: 0 auto; }

/* ---------- Band Section ---------- */
.band-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 24, 39, 0.8)), url('../assets/band.jpg');
  background-size: cover; background-position: center;
}

.band-section h2 {
  font-size: 2.2rem;              /* gleiche Größe wie "Fotos" */
  font-weight: 700;
  color: var(--gold, #E5C463);
  text-transform: none;
  margin-bottom: 0.75em;
  position: relative;
  display: inline-block;
}


.band-intro { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.band-intro p { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; line-height: 1.7; }
.lars-highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 15px; padding: 30px; margin: 40px 0; text-align: left;
}
.lars-highlight h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 20px; }
.lars-highlight p { color: #ccc; margin-bottom: 15px; line-height: 1.6; }

.band-members { max-width: 1200px; margin: 0 auto; }
.band-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 30px; }
.band-row-two { max-width: 800px; margin: 30px auto 0; }

.band-member {
  background: rgba(17, 24, 39, 0.5); border: 1px solid #374151; border-radius: 15px; padding: 30px;
  text-align: center; transition: all 0.3s ease; cursor: pointer;
}
.band-member:hover { border-color: var(--gold); transform: translateY(-10px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2); }

.member-photo {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; border: 3px solid var(--gold);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }

.band-member h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 10px; }
.member-role { color: #9ca3af; font-weight: 500; margin-bottom: 15px; }
.member-description { color: #ddd; font-size: 1rem; line-height: 1.7; font-weight: 400; }
.member-quote {
  background: rgba(212, 175, 55, 0.1); border-radius: 8px; padding: 10px; margin-top: 15px;
  color: var(--gold); font-style: italic; font-size: 0.9rem;
}

.band-closing { max-width: 800px; margin: 60px auto 0; text-align: center; }
.band-closing h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 20px; }
.band-closing p { color: #ddd; font-size: 1.2rem; line-height: 1.7; font-weight: 400; }

/* ---------- Tour Dates Section ---------- */
.tour-section {
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9)), url('../assets/dates.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.tour-dates {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 15px; padding: 40px; margin-top: 30px;
}

.tour-date {
  background: rgba(17, 24, 39, 0.7); border: 1px solid #374151; border-radius: 10px;
  padding: 25px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease;
}
.tour-date:hover { border-color: var(--gold); transform: translateY(-2px); }

.tour-info h4 { color: var(--gold); font-size: 1.3rem; margin-bottom: 5px; }
.tour-info p { color: #ccc; margin: 2px 0; }

.tour-ticket-btn {
  background: linear-gradient(45deg, #CCAC5C, #E9D382); color: #000; padding: 12px 24px;
  border: none; border-radius: 8px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; display: inline-block;
}
.tour-ticket-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }

.tour-date-card {
  background: rgba(17, 24, 39, 0.7); border: 1px solid #374151; border-radius: 15px; padding: 30px;
  display: flex; align-items: center; gap: 30px; transition: all 0.3s ease; margin-bottom: 20px;
}
.tour-date-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2); }

.date-info {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-radius: 12px; padding: 20px; min-width: 100px; border: 1px solid rgba(212, 175, 55, 0.3);
}
.date-day { font-size: 2.5rem; font-weight: bold; color: var(--gold); line-height: 1; }
.date-month { font-size: 1rem; font-weight: 600; color: #E9D382; margin: 5px 0; letter-spacing: 1px; }
.date-year { font-size: 1.1rem; color: #ccc; font-weight: 500; }

.event-info { flex: 1; }
.event-info h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 8px; font-weight: 600; }
.event-info .venue { color: #ccc; font-size: 1.1rem; margin-bottom: 5px; }
.event-info .time { color: #9ca3af; font-size: 1rem; font-weight: 500; }

.ticket-info .ticket-btn {
  background: linear-gradient(45deg, #CCAC5C, #E9D382); color: #000; padding: 15px 30px; border: none;
  border-radius: 10px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; display: inline-block; font-size: 1rem;
}
.ticket-info .ticket-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); }
.ticket-info-text { color: #9ca3af; font-size: 1rem; font-style: italic; padding: 15px 30px; display: inline-block; }

.upcoming-info-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.3); border-radius: 15px; padding: 30px; text-align: center; margin-top: 20px;
}
.upcoming-content h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; font-weight: 600; }
.upcoming-content p { color: #ddd; font-size: 1.1rem; margin: 0; }
.upcoming-content a { color: #CCAC5C; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.upcoming-content a:hover { color: #E9D382; text-decoration: underline; }


/* ---------- Gallery Section (zusammengeführt) ---------- */
.gallery-section {
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9)), url('../assets/galerie.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  min-height: 100vh; padding-top: 120px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 50px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 15px;
  border: 2px solid rgba(212, 175, 55, 0.3); transition: all 0.3s ease; cursor: pointer; aspect-ratio: 16/10;
}
.gallery-item:hover {
  border-color: var(--gold); transform: scale(1.05); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ---------- Download Section ---------- */
.download-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 24, 39, 0.8));
  min-height: 100vh; padding-top: 120px;
}
.download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.download-card {
  background: rgba(17, 24, 39, 0.5); border: 1px solid #374151; border-radius: 15px; padding: 30px; text-align: center; transition: all 0.3s ease;
}
.download-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2); }
.download-icon { font-size: 3rem; margin-bottom: 20px; }
.download-card h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 15px; }
.download-card p { color: #ccc; margin-bottom: 20px; line-height: 1.6; }
.download-btn {
  display: inline-block; padding: 12px 25px; background: var(--gold); color: #000; text-decoration: none; border-radius: 25px; font-weight: bold; transition: all 0.3s ease;
}
.download-btn:hover { background: var(--gold-light); transform: scale(1.05); }
.download-info {
  max-width: 600px; margin: 60px auto 0; text-align: center; background: rgba(17, 24, 39, 0.3); border-radius: 15px; padding: 40px;
}
.download-info h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 20px; }
.download-info p { color: #ccc; line-height: 1.7; margin-bottom: 20px; }
.contact-quick { background: rgba(212, 175, 55, 0.1); border-radius: 10px; padding: 20px; margin-top: 20px; }
.contact-quick p { margin-bottom: 8px; color: #fff; }
.contact-quick a { color: var(--gold); text-decoration: none; }
.contact-quick a:hover { color: var(--gold-light); }

/* ---------- Contact Section ---------- */
.contact-section {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.9)), url('../assets/kontakt.jpg');
  background-size: cover; background-position: center;
}
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 60px; margin-top: 50px; }
.contact-info h3, .contact-form-wrapper h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 30px; }

.contact-card {
  background: rgba(30, 30, 30, 0.9); border: 2px solid rgba(204, 172, 92, 0.3);
  border-radius: 15px; padding: 30px; margin-bottom: 25px; transition: all 0.3s ease; backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; gap: 20px;
}
.contact-card:hover { border-color: #CCAC5C; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(204, 172, 92, 0.25); }
.contact-icon {
  color: #CCAC5C; min-width: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(204, 172, 92, 0.1); border-radius: 10px; padding: 8px;
}
.contact-details h4 {
  background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px; font-size: 1.3rem; font-weight: bold; display: inline-block;
}
.contact-details p { color: #ccc; margin-bottom: 12px; line-height: 1.6; font-size: 1rem; }
.contact-phone, .contact-email { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.contact-phone svg, .contact-email svg { color: #CCAC5C; opacity: 0.8; }
.contact-details a { color: #CCAC5C; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.contact-details a:hover { color: #E9D382; text-decoration: underline; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { color: #ccc; font-weight: 500; }
.form-group input, .form-group textarea {
  padding: 12px 15px; border: 2px solid #374151; border-radius: 8px; background: rgba(17, 24, 39, 0.5);
  color: #fff; font-size: 1rem; transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(17, 24, 39, 0.8); }
.form-group input, .form-group textarea { border-color: #374151; } /* default */
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-group .error-message { color: #ef4444; font-size: 0.875rem; margin-top: 5px; display: none; }
.form-group .error-message.show { display: block; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #6b7280; }

.checkbox-group { flex-direction: row; align-items: flex-start; gap: 10px; }
.checkbox-group input { width: auto; margin: 0; }
.checkbox-group label { font-size: 0.9rem; line-height: 1.4; }
.checkbox-group a { color: var(--gold); text-decoration: underline; }

.submit-btn {
  padding: 15px 30px; background: #CCAC5C; color: #000; border: none; border-radius: 8px; font-weight: bold; font-size: 1rem;
  cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(204, 172, 92, 0.4); background: #D8B968; }

/* ---------- Footer ---------- */
.footer { background: #000; color: #fff; padding: 60px 0 0; }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }
.footer-social-section { margin-bottom: 40px; }
.footer-social-section h3 {
  background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 2rem; margin-bottom: 30px; font-weight: bold; display: inline-block;
}
.footer-social-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; }

.social-icon {
  display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%;
  transition: all 0.3s ease; text-decoration: none;
}
.social-icon.youtube { color: #FF0000; background: rgba(255, 0, 0, 0.1); }
.social-icon.facebook { color: #1877F2; background: rgba(24, 119, 242, 0.1); }
.social-icon.instagram { color: #E4405F; background: rgba(228, 64, 95, 0.1); }
.social-icon:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1); }

.footer-legal { margin-bottom: 40px; }
.footer-links { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 1.1rem; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #CCAC5C; }
.footer-links .separator { color: #666; font-size: 1.2rem; }

.footer-bottom {
  background: #111; padding: 30px 0;
  display: flex; align-items: center; justify-content: center; gap: 15px; flex-direction: column;
}
.footer-logo svg { color: #CCAC5C; }
.footer-bottom p { margin: 0; color: #888; font-size: 0.9rem; text-align: center; }

/* ===== Overlay (Datenschutz/Impressum) – hübsch & robust ===== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  /* erst mal unsichtbar, aber ohne Layout-Sprung */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* schöner Backdrop */
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  /* sanftes Ein-/Ausblenden */
  transition: opacity 220ms ease, visibility 220ms ease;
  overflow-y: auto;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dialogkarte */
.overlay-content {
  position: relative;
  margin: 60px auto;
  max-width: 820px;
  background: rgba(18, 18, 18, 0.95);
  border-radius: 16px;
  border: 1.5px solid rgba(212, 175, 55, 0.35); /* var(--gold) soft */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.02),
    0 0 40px rgba(212, 175, 55, 0.15);
  padding: 40px;

  /* Start leicht nach unten + Fade (wir animieren Kind statt Container) */
  transform: translateY(12px);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.overlay.active .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

/* Headline im Goldverlauf */
.overlay-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #DEC05B 0%, #E9D382 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fließtext */
.overlay-text {
  color: #ddd;
  line-height: 1.7;
  font-size: 1rem;
}

.overlay-text h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin: 26px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
}

.overlay-text h4 {
  color: #E9D382;
  font-size: 1.05rem;
  margin: 18px 0 8px;
}

/* Close-Button */
.overlay-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.overlay-close:hover {
  background-color: rgba(212, 175, 55, 0.12);
  color: #E9D382;
  transform: scale(1.05);
}

/* Klick auf den dunklen Rand soll möglich sein */
.overlay.active { cursor: default; }

/* Responsiveness */
@media (max-width: 768px) {
  .overlay-content {
    margin: 20px;
    padding: 26px;
  }
}

/* Barrierearmut: Motion reduzieren */
@media (prefers-reduced-motion: reduce) {
  .overlay,
  .overlay-content {
    transition: none !important;
  }
}


/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3); z-index: 10001; opacity: 0; visibility: hidden; transition: all 0.3s ease; pointer-events: none;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

/* ---------- Desktop Navigation (>=769px) ---------- */
@media (min-width: 769px) {
  .nav-menu {
    display: flex; flex-direction: row; position: static; width: auto; height: auto; background: transparent;
    gap: 30px; z-index: auto;
  }
  .nav-menu li { margin: 0; }
  .nav-menu a {
    color: #ffffff; text-decoration: none; font-weight: 500; background: transparent; padding: 0; border: none; border-radius: 0;
    min-width: auto; font-size: 1rem; position: relative;
  }
  .nav-menu a:hover { color: var(--gold); }
  .nav-menu a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background-color: var(--gold); transition: width 0.3s ease;
  }
  .nav-menu a:hover::after { width: 100%; }
  .hamburger { display: none; }
}

/* ---------- Mobile (<769px) ---------- */
@media (max-width: 768px) {
  .hero { background-attachment: scroll; background-position: center center; background-size: cover; padding-top: 120px; min-height: calc(100vh - 70px); }
  .band-section, .tour-section { background-attachment: scroll; background-position: center center; background-size: cover; }
  .live-teaser-section { background-attachment: scroll; background-position: center top; background-size: cover; }
  .gallery-section { background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(30,30,30,0.9)); background-attachment: scroll; }

  /* Mobile Navigation Drawer */
  .nav-menu {
    display: none; position: fixed; top: 70px; right: -320px; width: 280px; height: calc(100vh - 70px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(17, 24, 39, 0.95)); backdrop-filter: blur(10px);
    z-index: 999; flex-direction: column; justify-content: flex-start; align-items: center;
    border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); border-radius: 0 0 0 20px;
    box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.7); transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 40px 0 20px 0;
  }
  .nav-menu.show { display: flex; right: 0; }
  .nav-menu li { margin: 2px 0; list-style: none; opacity: 0; transform: translateX(30px); animation: slideInNav 0.3s ease forwards; }
  .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
  .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
  @keyframes slideInNav { to { opacity: 1; transform: translateX(0); } }

  .nav-menu a {
    color: #ffffff; text-decoration: none; font-size: 0.95rem; font-weight: 600; padding: 8px 20px; display: block;
    background: transparent; border: 2px solid transparent; border-radius: 20px; text-align: center; min-width: 150px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
  }
  .nav-menu a::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent); transition: left 0.5s ease;
  }
  .nav-menu a:hover::before { left: 100%; }
  .nav-menu a:hover {
    border-color: var(--gold); background: rgba(212, 175, 55, 0.1); color: var(--gold);
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  }

  .hamburger {
    display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 22px; cursor: pointer; padding: 12px;
    border: 2px solid transparent; border-radius: 8px; transition: all 0.3s ease; min-width: 44px; min-height: 44px;
    background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(5px);
  }
  .hamburger:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.1); transform: scale(1.05); }

  .footer-social-icons { gap: 20px; }
  .social-icon { width: 50px; height: 50px; }
  .social-icon svg { width: 24px; height: 24px; }
  .footer-links { flex-direction: column; gap: 15px; }
  .footer-links .separator { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-card { flex-direction: column; text-align: center; gap: 15px; }
  .contact-icon { align-self: center; }
  .form-row { grid-template-columns: 1fr; }

  .hero { padding-top: 140px; min-height: calc(100vh - 50px); }
  .hero-content { padding: 0 15px; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 15px; }
  .hero-content p { font-size: clamp(0.9rem, 4vw, 1.2rem); margin-bottom: 20px; }
  .hero-subtitle { font-size: clamp(1rem, 4vw, 1.4rem) !important; letter-spacing: 1px; margin-bottom: 30px !important; }

  .gallery-grid { grid-template-columns: 1fr; }

  .download-grid { grid-template-columns: 1fr; }

  .modal-body { padding: 20px; }
  .modal-body img { max-width: 90%; }

  .tour-date-card { flex-direction: column; text-align: center; gap: 20px; }
  .date-info { min-width: auto; width: 120px; }

  .social-icons { gap: 15px; }
  .social-link { width: 45px; height: 45px; }
}

/* ---------- Landscape Tiny Screens ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding-top: 80px; min-height: 100vh; }
  .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 10px; }
  .hero-content p { font-size: clamp(0.8rem, 3vw, 1rem); margin-bottom: 15px; }
  .hero-subtitle { font-size: clamp(0.9rem, 3vw, 1.2rem) !important; margin-bottom: 20px !important; }
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
  position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold); z-index: 10000; transform: translateY(100%); transition: transform 0.3s ease;
}
.cookie-popup.show { transform: translateY(0); }
.cookie-content {
  max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-icon { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 300px; }
.cookie-text h4 { color: var(--gold); margin: 0 0 10px 0; font-size: 1.2rem; }
.cookie-text p { margin: 0; color: #ffffff; line-height: 1.4; }
.cookie-buttons { display: flex; gap: 15px; flex-shrink: 0; }
.cookie-accept, .cookie-details {
  padding: 12px 24px; border: none; border-radius: 25px; font-weight: 600; cursor: pointer; transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cookie-accept { background: linear-gradient(45deg, var(--gold), var(--gold-light)); color: #000; }
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }
.cookie-details { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.cookie-details:hover { background: var(--gold); color: #000; }

@media (max-width: 768px) {
  .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
  .cookie-buttons { justify-content: center; width: 100%; }
  .cookie-accept, .cookie-details { flex: 1; min-width: 120px; }
}

/* ---------- Success Toast ---------- */
.success-toast {
  position: fixed; top: 100px; right: 20px;
  background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
  border: 2px solid var(--gold); border-radius: 15px; z-index: 9998;
  transform: translateX(400px); transition: transform 0.4s ease;
  max-width: 400px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; display: none;
}
.success-toast.show { transform: translateX(0); opacity: 1; visibility: visible; }
.toast-content { padding: 20px; display: flex; align-items: flex-start; gap: 15px; position: relative; }
.toast-icon {
  background: linear-gradient(45deg, var(--gold), var(--gold-light)); color: #000; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; flex-shrink: 0;
}
.toast-text { flex: 1; }
.toast-text h4 { color: var(--gold); margin: 0 0 8px 0; font-size: 1.1rem; }
.toast-text p { margin: 0; color: #ffffff; line-height: 1.4; font-size: 0.95rem; }
.toast-close {
  position: absolute; top: 10px; right: 15px; background: none; border: none; color: var(--gold);
  font-size: 24px; cursor: pointer; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
  transition: background 0.3s ease;
}
.toast-close:hover { background: rgba(212, 175, 55, 0.2); }

@media (max-width: 768px) {
  .success-toast { right: 10px; left: 10px; max-width: none; transform: translateY(-200px); }
  .success-toast.show { transform: translateY(0); }
}

/* ---------- Member Modal ---------- */
/* === Bandmitglied-Modal === */
.member-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  backdrop-filter: blur(8px);
}

.member-modal.active {
  display: flex;
}

.member-modal .modal-content {
  position: relative;
  background: rgba(20, 20, 20, 0.95);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  animation: fadeInUp 0.25s ease both;
}

/* Schließen-Button wieder oben rechts */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: #e8d17d;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

/* Inhalt */
.modal-body {
  display: flex;
  flex-wrap: wrap;
  padding: 36px;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}

.modal-body img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.25);
}

.modal-info {
  flex: 1;
  color: #ddd;
}

.modal-info h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal-quote {
  margin-top: 14px;
  font-style: italic;
  color: #E9D382;
}

/* Member-Modal: Untertitel/Role wieder als eigenständiger Subtitle */
#modalRole {
  color: #9ca3af;          /* dezentes Grau wie vorher */
  font-weight: 600;        /* etwas betont */
  font-size: 1.05rem;      /* minimal größer als Body */
  margin-top: 2px;
  margin-bottom: 12px;     /* Abstand zur Beschreibung */
  letter-spacing: 0.2px;
}

/* Optional: Name & Beschreibung für klare Hierarchie */
#modalName {
  margin-bottom: 4px;      /* enger an den Subtitle heran */
}

#modalDescription {
  color: #dddddd;
  line-height: 1.7;
}


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

/* Mobile */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    padding: 24px;
  }
  .modal-body img {
    width: 100%;
  }
  .modal-close {
    top: 10px;
    right: 10px;
  }
}


/* ---------- Lightbox ---------- */
.lightbox { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); cursor: pointer; }
.lightbox.active { display: flex; align-items: center; justify-content: center; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 10px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: var(--gold); font-size: 40px; font-weight: bold; cursor: pointer; z-index: 2001; }

/* ---------- Responsive Helpers ---------- */
@media (max-width: 1024px) { .social-sidebar { display: none; } }

/* === Lite YouTube (KEEP THE FAITH) – Poster + Glow + Play === */
.video-container { position: relative; } /* existiert bereits bei dir – doppelt ist ok */

/* das Lite-Element füllt exakt den Container (wie bisher das <iframe>) */
.video-container lite-youtube {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
  border-radius: inherit; overflow: hidden; background:#000;
}

/* Poster als echtes <img> für sauberes LCP */
.video-container lite-youtube > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .28s ease;
}

/* Play-Button + CTA mittig */
.video-container lite-youtube > button {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer; outline-offset: 6px;
}

/* Round button mit goldenem Ring + Schimmer */
.ktf-play {
  position: relative; width: 84px; height: 84px; border-radius: 9999px; display: grid; place-items: center;
}
.ktf-play::before {
  content: ""; position: absolute; inset: -3px; border-radius: 9999px;
  border: 3px solid #DCBD54; /* euer Gold */
  box-shadow: 0 0 0 10px rgba(220,189,84,.08), 0 10px 26px rgba(0,0,0,.45);
}
.ktf-play::after {
  content: ""; position: absolute; inset: 0; border-radius: 9999px; background: rgba(0,0,0,.55);
  backdrop-filter: saturate(120%) blur(.5px);
}
.ktf-play svg { position: relative; width: 36px; height: 36px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }

/* CTA-Pille unter dem Button */
.ktf-cta {
  margin-top: 10px; font-weight: 800; font-size: 16px; letter-spacing: .3px;
  color: #fff; background: rgba(0,0,0,.75); padding: 10px 14px; border-radius: 9999px;
}

/* Hover/Focus – wie im EPK mit Scale + Glow */
.video-container:hover lite-youtube > img,
.video-container:focus-within lite-youtube > img {
  transform: scale(1.02);
}
.video-container:hover,
.video-container:focus-within {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(220,189,84,.25); /* goldener Glow wie im EPK */
  transition: transform .28s ease, box-shadow .28s ease;
}

/* Safety: Deko-Overlays klicken nicht */
.ktf-play::before, .ktf-play::after { pointer-events: none; }
.section-booking { padding: 48px 0; }
.section-booking .lead { max-width: 70ch; margin: 0 auto 24px; text-align: center; opacity: .9; }
.booking-grid {
  display: grid; gap: 16px; margin: 24px auto; max-width: 1100px;
  grid-template-columns: 1fr; 
}
@media (min-width: 900px){ .booking-grid { grid-template-columns: repeat(3, 1fr); } }
.booking-card {
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 16px 18px; box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.booking-card h3 { margin: 4px 0 10px; font-size: 1.1rem; letter-spacing: .2px; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid rgba(255,255,255,.06); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓"; position: absolute; left: 6px; top: 8px; opacity: .9;
}
.booking-cta { display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.btn { display:inline-block; padding: 12px 16px; border-radius: 9999px; text-decoration:none; font-weight: 800; }
.btn-primary { background: #E5C463; color: #141414; box-shadow: 0 10px 28px rgba(229,196,99,.25); }
.btn-secondary { border: 1px solid rgba(255,255,255,.14); color: #fff; }
.btn-ghost { color: #ccc; }
.btn:hover { transform: translateY(-1px); }

/* Booking-Section: Hintergrundbild + Overlay */
.section-booking.has-bg {
  position: relative;
  overflow: clip; /* kein Scroll-Bleed */
  padding: 64px 0 56px; /* etwas mehr Luft */
}

.section-booking.has-bg .section-bg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(105%) contrast(105%);
  z-index: -2;
}


/* dunkles Verlauf-Overlay für guten Kontrast */
.section-booking.has-bg::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(1200px 400px at 50% 20%, rgba(0,0,0,.15), rgba(0,0,0,.5) 60%, rgba(0,0,0,.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%);
}

/* Headline/Lead optisch mittig und ruhiger */
.section-booking h2{
  text-align:center; margin:0 auto 10px;
  max-width: 22ch; line-height:1.2;
}
.section-booking .lead{
  max-width: 72ch; margin: 0 auto 28px; text-align:center; opacity:.95;
}

/* Grid & Karten (falls noch nicht gesetzt) */
.section-booking .booking-grid{
  display:grid; gap:16px; margin: 22px auto; max-width:1100px;
  grid-template-columns:1fr;
}
@media (min-width: 900px){
  .section-booking .booking-grid{ grid-template-columns: repeat(3, 1fr); }
}

.section-booking .booking-card{
  background: rgba(0,0,0,.48);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  backdrop-filter: saturate(115%) blur(1px);
}

.section-booking .booking-card h3{ margin:4px 0 10px; font-size:1.1rem; letter-spacing:.2px; }
.section-booking .checklist{ list-style:none; margin:0; padding:0; }
.section-booking .checklist li{
  position:relative; padding:8px 0 8px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section-booking .checklist li:last-child{ border-bottom:0; }
.section-booking .checklist li::before{
  content:"✓"; position:absolute; left:6px; top:8px; opacity:.9;
}

/* CTA-Zeile */
.section-booking .booking-cta{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top: 18px;
}
.section-booking .btn{ display:inline-block; padding:12px 16px; border-radius:9999px; text-decoration:none; font-weight:800; }
.section-booking .btn-primary{ background:#E5C463; color:#141414; box-shadow:0 10px 28px rgba(229,196,99,.25); }
.section-booking .btn-secondary{ border:1px solid rgba(255,255,255,.18); color:#fff; }
.section-booking .btn-ghost{ color:#ddd; }
.section-booking .btn:hover{ transform: translateY(-1px); }

/* =======================================
   BOOKING SECTION MIT HINTERGRUNDBILD
======================================= */
.section-booking.has-bg {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  color: #fff;
}

.section-booking.has-bg .section-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
}

/* Dunkles Overlay für Kontrast */
.section-booking.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}

/* Textblöcke */
.section-booking h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-booking .lead {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 36px;
  opacity: 0.95;
  font-size: 1.05rem;
}

/* Grid und Karten */
.section-booking .booking-grid {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .section-booking .booking-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-booking .booking-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Checkliste */
.section-booking .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-booking .checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.section-booking .checklist li:last-child {
  border-bottom: 0;
}
.section-booking .checklist li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 8px;
  opacity: 0.9;
}

/* Buttons */
.section-booking .booking-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.section-booking .btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.section-booking .btn-primary {
  background: #e5c463;
  color: #141414;
  box-shadow: 0 8px 20px rgba(229, 196, 99, 0.3);
}
.section-booking .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.section-booking .btn-ghost {
  color: #ddd;
}
.section-booking .btn:hover {
  transform: translateY(-2px);
}

/* Booking-Section: sicheres Background-Setup */
#booking.section-booking.has-bg{
  position: relative;
  z-index: 0;            /* neuer Stacking-Context */
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Bild UND Overlay komplett über ::before – keine Kinder nötig */
#booking.section-booking.has-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;           /* hinter Inhalt, aber noch in der Section */
  background-image: url("/assets/02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(105%) contrast(105%);
}

/* dunkles Overlay für Textkontrast */
#booking.section-booking.has-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
}

/* Gold wie in den anderen Sektionen */
#booking.section-booking h2{
  color: var(--gold, #E5C463);
  text-align: center;
  margin: 0 auto 10px;
  line-height: 1.2;
}

/* Lead-Absatz: gleiche Größe/Lesbarkeit wie oben */
#booking.section-booking .lead{
  max-width: 72ch;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 1.125rem;   /* ggf. 1.1–1.2 je nach Gesamtsystem */
  line-height: 1.55;
  opacity: .95;
}

/* Karten-Optik konsistent */
#booking .booking-grid{
  display: grid; gap: 20px; max-width: 1100px; margin: 0 auto 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  #booking .booking-grid{ grid-template-columns: repeat(3, 1fr); }
}
#booking .booking-card{
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

/* CTA-Zeile */
#booking .booking-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:28px; }
#booking .btn{ display:inline-block; padding:12px 20px; border-radius:9999px; text-decoration:none; font-weight:700; }

/* Primär / Sekundär wie gehabt */
#booking .btn-primary{ background:#E5C463; color:#141414; box-shadow:0 8px 20px rgba(229,196,99,.3); }
#booking .btn-secondary{ border:1px solid rgba(255,255,255,.18); color:#fff; }

/* EPK: jetzt mit Rahmen */
#booking .btn-ghost{
  color:#ddd;
  border:1px solid rgba(255,255,255,.18);
  background: transparent;
}

/* dezentes Hover */
#booking .btn:hover{ transform: translateY(-2px); }

/* =======================================
   VISUAL FIXES – BOOKING / VERANSTALTER
   ======================================= */

/* Grundabstand angleichen */
#booking.section-booking {
  padding: 90px 0 80px;
  text-align: center;
}

/* Überschrift – gleiche Größe, Farbe und Linie wie andere Sektionen */
#booking.section-booking h2 {
  font-size: 2.2rem;              /* gleiche Größe wie "Fotos" */
  font-weight: 700;
  color: var(--gold, #E5C463);
  text-transform: none;
  margin-bottom: 0.75em;
  position: relative;
  display: inline-block;
}



/* Untertitel / Beschreibung angleichen */
#booking.section-booking .lead {
  font-size: 1.125rem;            /* gleiche Lesbarkeit wie "Fotos"-Intro */
  max-width: 70ch;
  margin: 0 auto 2.5rem;
  color: #fff;
  opacity: 0.95;
  line-height: 1.6;
}

/* Buttons optisch angleichen */
#booking .booking-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

#booking .btn {
  font-weight: 700;
  border-radius: 9999px;
  padding: 12px 22px;
  text-decoration: none;
  transition: all 0.2s ease;
}

#booking .btn-primary {
  background: var(--gold, #E5C463);
  color: #141414;
  box-shadow: 0 8px 20px rgba(229, 196, 99, 0.3);
}

#booking .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

#booking .btn:hover {
  transform: translateY(-2px);
}


/* (End of file) */
