/* =====================================================
   KULTURKIRCHE DUISBURG – DESIGN TUNING
   Version: 1.0
   Zweck: Optische Veredelung ohne Strukturbruch
   ===================================================== */

/* ---------- Farbdefinitionen ---------- */
:root {
  --gold: #c7a14a;
  --gold-dark: #b08c3b;
  --dark: #111111;
  --soft-dark: #1b1b1b;
  --light: #f6f6f6;
  --text: #333333;
}

/* ---------- Global ---------- */
body {
  line-height: 1.65;
  color: var(--text);
}

section {
  padding: 80px 0;
}

/* ---------- Hero Overlay ---------- */
#hero {
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.great-vibes-heading {
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* ---------- Buttons (vereinheitlicht) ---------- */
.btn-book,
.book-a-table-btn,
button[type="submit"] {
  background: var(--gold) !important;
  color: #000 !important;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-book:hover,
.book-a-table-btn:hover,
button[type="submit"]:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ---------- Section Titles ---------- */
.section-title h2 {
  letter-spacing: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Ticket / Why-Us Boxen ---------- */
.why-us .box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.why-us .box:hover {
  transform: translateY(-5px);
}

.why-us .box img {
  transition: transform 0.4s ease;
}

.why-us .box:hover img {
  transform: scale(1.04);
}

/* ---------- About Text ---------- */
.about p {
  max-width: 680px;
}

/* ---------- Tabs (Theatersaal) ---------- */
.nav-tabs .nav-link {
  border-radius: 30px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background: var(--gold);
  color: #000;
}

/* ---------- Events Slider ---------- */
.events .event-item {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

/* ---------- Galerie ---------- */
.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* ---------- Formulare ---------- */
.form-control {
  border-radius: 12px;
  padding: 14px 16px;
}

.php-email-form button {
  margin-top: 20px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--light);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  background: var(--gold);
}

.back-to-top:hover {
  background: var(--gold-dark);
}

/* ---------- Mobile Optimierung ---------- */
@media (max-width: 768px) {

  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 36px;
  }

  .great-vibes-heading {
    font-size: 42px;
  }

  .section-title p {
    padding: 0 15px;
  }

  .btn-book,
  .book-a-table-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* ---------- Ende ---------- */

/* =====================================================
   FIX: Übergang Theatersaal → Events
   ===================================================== */

/* 1. Specials (Theatersaal) sauber beenden */
#specials {
  padding-bottom: 140px;
  position: relative;
}

/* optional: sanfter Fade nach unten */
#specials::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), #000);
  pointer-events: none;
}

/* 2. Events klar absetzen */
#events {
  margin-top: 120px;
  padding-top: 120px;
}

/* 3. Event-Karten harmonischer */
.events .event-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Überschrift mehr Raum geben */
#events .section-title {
  margin-bottom: 60px;
}

/* Mobile Feinschliff */
@media (max-width: 768px) {
  #specials {
    padding-bottom: 100px;
  }

  #events {
    margin-top: 80px;
    padding-top: 80px;
  }
}

/* ===============================
   Events – weiße Boxen entschärfen
   =============================== */

.events .event-item {
  background: rgba(20, 20, 20, 0.85);
  color: #eaeaea;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(199, 161, 74, 0.15);
}

.events .event-item h3 {
  color: var(--gold);
}

.events .event-item p {
  color: #d0d0d0;
}

.events .price span {
  color: #bfbfbf;
}

/* ===============================
   Bewertungen – dunkel & edel
   =============================== */

/* Gesamter Bereich */
.testimonials {
  background: radial-gradient(
    ellipse at top,
    #1a1a1a 0%,
    #0d0d0d 60%,
    #000000 100%
  );
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Überschrift */
.testimonials .section-title h2 {
  color: var(--gold);
}

.testimonials .section-title p {
  color: #bfbfbf;
}

/* Einzelne Bewertungsboxen */
.testimonials .testimonial-item {
  background: rgba(25, 25, 25, 0.9);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(199, 161, 74, 0.15);
}

/* Text in den Bewertungen */
.testimonials .testimonial-item p {
  color: #d0d0d0;
}

/* Namen */
.testimonials .testimonial-item h3 {
  color: #ffffff;
}

/* Sterne */
.testimonials .stars i {
  color: var(--gold);
}

/* Google-Avatare etwas beruhigen */
.testimonials img {
  box-shadow: 0 0 0 2px rgba(199,161,74,0.4);
}

/* Pagination (Punkte unten) */
.testimonials .swiper-pagination-bullet {
  background: rgba(255,255,255,0.3);
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ===============================
   Preisklassen-Menü (Tabs)
   =============================== */

.nav-tabs {
  border: none;
}

.nav-tabs .nav-link {
  background: transparent;
  color: #cfcfcf;
  border: 1px solid rgba(199, 161, 74, 0.3);
  border-radius: 40px;
  padding: 12px 26px;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background: rgba(199, 161, 74, 0.1);
  color: var(--gold);
}

.nav-tabs .nav-link.active {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(199,161,74,0.4);
}
/* ===============================
   Saalplan harmonischer
   =============================== */

#specials img {
  background: #111;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}


