/* Reset & Grundeinstellungen */
*,*::before,*::after {
  box-sizing:border-box;
  margin:0;
  padding:0;

}
 :root {
   --black:#0e0e0e;
  --white:#f8f5f0;
  --cream:#f0ebe2;
   --red:#c0392b;
  --gold:#b5943a;
  --muted:#6b6560;
   --serif:'Playfair Display',Georgia,serif;
   --sans:'DM Sans',system-ui,sans-serif;

}
 html {
  scroll-behavior:smooth;

}
 body {
  font-family:var(--sans);
  background:var(--black);
  color:var(--white);
  font-size:15px;
  line-height:1.7;

}
 
/* Navigation */
nav {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 3rem;
  background:rgba(14,14,14,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.07);

}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
}

 .nav-logo {
  text-decoration:none;

}
 .nav-logo-image {
  height:52px;
  width:auto;
  display:block;

}
 .nav-links {
  display:flex;
  gap:2.2rem;
  list-style:none;

}
 .nav-links a {
  font-size:0.78rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(248,245,240,0.6);
  text-decoration:none;
  transition:color 0.2s;

}
 .nav-links a:hover {
  color:var(--white);

}

/* Hamburger Button */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 500;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 300;

  display: flex;
  flex-direction: column;
  gap: 1.4rem;

  padding: 9rem 3rem 2.5rem;

  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(8px);

  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-mobile a:hover {
  color: var(--red);
}

/* Burger wird zu X */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    z-index: 600;
  }

  .nav-logo {
    position: relative;
    z-index: 500;
  }

  .nav-logo-image {
    width: 120px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }
}
 
/* Hero / Startbereich */
.hero {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  position:relative;
  overflow:hidden;
  background-position:center 20%;


}

 .hero-label {
  font-size:0.72rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.2rem;
  position:relative;

}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  font-weight: 700;
  position: relative;
  max-width: 780px;
}

 .hero-title em {
  font-style:italic;
  color:var(--gold);

}
 .hero-sub {
  margin-top:1.8rem;
  font-size:1rem;
  color:rgba(248,245,240,0.85);
  max-width:520px;
  position:relative;
  line-height:1.7;

}
 .hero-cta {
  margin-top:2.5rem;
  display:flex;
  gap:1rem;
  align-items:center;
  position:relative;

}
 .btn-primary {
  display:inline-block;
  padding:0.85rem 2.2rem;
  background:var(--red);
  color:var(--white);
  text-decoration:none;
  font-size:0.82rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:500;
  border:none;
  cursor:pointer;
  font-family:var(--sans);
  transition:background 0.2s;

}
 .btn-primary:hover {
  background:#a93226;

}
 .btn-ghost {
  display:inline-block;
  padding:0.85rem 2.2rem;
  border:1px solid rgba(248,245,240,0.35);
  color:rgba(248,245,240,0.85);
  text-decoration:none;
  font-size:0.82rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:500;
  transition:border-color 0.2s,color 0.2s;

}
 .btn-ghost:hover {
  border-color:rgba(248,245,240,0.7);
  color:var(--white);

}
 .hero-scroll {
  position:absolute;
  bottom:2.5rem;
  right:3rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.6rem;
  font-size:0.65rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:rgba(248,245,240,0.45);

}
 .hero-scroll-line {
  width:1px;
  height:60px;
  background:linear-gradient(to bottom,rgba(248,245,240,0.45),transparent);

}


.thankyou-header {
  position: relative;
  min-height: 80vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  text-align: center;
  padding: 4rem 2rem;
}

/* Hintergrundbild */
.thankyou-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* dunkles Overlay */
.thankyou-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(14,14,14,0.6),
      rgba(14,14,14,0.82)
    );

  z-index: 1;
}

/* Inhalt */
.thankyou-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.thankyou-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  margin: 1rem 0 2rem;
  color: var(--white);
}

.thankyou-text {
  max-width: 620px;
  margin: 0 auto;

  font-size: 1.1rem;
  line-height: 1.8;

  color: rgba(248,245,240,0.8);
}
 
/* Allgemeine Section-Stile */
section {
  padding:7rem 3rem;

}
 .section-label {
  font-size:0.72rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1rem;

}
 .section-title {
  font-family:var(--serif);
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:700;
  line-height:1.15;
  margin-bottom:1.5rem;

}
 .section-divider {
  width:48px;
  height:2px;
  background:var(--red);
  margin-bottom:2rem;

}
 
/* Über uns */
.about {
  background:var(--black);

}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Desktop: Text links, Zahlen rechts */
.about-text {
  order: 1;
}

.stats-grid {
  order: 2;
}

/* Mobile */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    order: 1;
  }

  .stats-grid {
    order: 2;
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    order: 1;
  }

  .stats-grid {
    order: 2;
    grid-template-columns: 1fr 1fr;
  }
}

 .about-text p {
  color:rgba(248,245,240,0.7);
  margin-bottom:1rem;

}
 .stats-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:rgba(248,245,240,0.08);

}
 .stat-box {
  background:#131313;
  padding:2rem;
  text-align:center;

}
 .stat-number {
  font-family:var(--serif);
  font-size:2.5rem;
  font-weight:700;
  color:var(--gold);

}
 .stat-label {
  font-size:0.75rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:0.4rem;

}
 
/* Ensemble / Team */
.team {
  background:#131313;

}
 .team-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:1.5rem;
  margin-top:3rem;

}
 .team-card {
  position:relative;
  overflow:hidden;
  aspect-ratio:3/4;
  background:#1c1c1c;

}
 .team-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(30%);
  transition:transform 0.4s ease,filter 0.4s;
  display:block;

}
 .team-card:hover img {
  transform:scale(1.04);
  filter:grayscale(0%);

}
 .team-card-info {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:2rem 1rem 1rem;
  background:linear-gradient(to top,rgba(14,14,14,0.95),transparent);

}
 .team-card-name {
  font-family:var(--serif);
  font-size:1rem;
  font-weight:700;
  color:var(--white);

}
 .team-card-role {
  font-size:0.72rem;
  color:var(--gold);
  letter-spacing:0.05em;
  margin-top:0.15rem;

}
 .termine {
  background:var(--black);

}
 .termine-table {
  width:100%;
  max-width:800px;
  border-collapse:collapse;
  margin-top:2.5rem;

}
 .termine-table thead tr {
  border-bottom:1px solid rgba(248,245,240,0.12);

}
 .termine-table th {
  font-size:0.7rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:400;
  padding:0.6rem 1.2rem 1rem 0;
  text-align:left;

}
 .termine-table td {
  padding:1rem 1.2rem 1rem 0;
  border-bottom:1px solid rgba(248,245,240,0.07);
  color:rgba(248,245,240,0.8);
  font-size:0.95rem;

}
 .termine-table tr:last-child td {
  border-bottom:none;

}
 .termine-table td.date {
  font-family:var(--serif);
  font-weight:700;
  color:var(--white);
  font-size:1rem;

}
 .termine-table td.time {
  color:var(--gold);

}
 .termine-note {
  margin-top:1.5rem;
  font-size:0.82rem;
  color:var(--muted);

}
 .tickets {
  background:var(--cream);
  color:var(--black);

}
 .tickets .section-label {
  color:var(--red);

}
 .tickets .section-divider {
  background:var(--red);

}
 .tickets .section-title {
  color:var(--black);

}
 .ticket-cards {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  max-width:700px;
  margin-top:2.5rem;

}
 .ticket-card {
  padding:2rem;
  border:1px solid rgba(14,14,14,0.12);
  background:white;

}
 .ticket-card h3 {
  font-family:var(--serif);
  font-size:1.2rem;
  margin-bottom:0.4rem;

}
 .ticket-card p {
  font-size:0.88rem;
  color:#6b6560;
  margin-bottom:1.5rem;

}
 .ticket-card a {
  font-size:0.78rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--red);
  text-decoration:none;
  border-bottom:1px solid var(--red);
  padding-bottom:2px;

}
 
/* NEWSLETTER */
.newsletter {
  background:#0d0d0d;
  border-top:1px solid rgba(248,245,240,0.06);
  border-bottom:1px solid rgba(248,245,240,0.06);

}
 .newsletter-inner {
  max-width:680px;

}
 .newsletter-inner p {
  color:rgba(248,245,240,0.6);
  margin-bottom:2.5rem;
  max-width:500px;

}

 .newsletter-form input[type="email"] {
  flex:1;
  background:transparent;
  border:1px solid rgba(248,245,240,0.2);
  border-right:none;
  color:var(--white);
  font-family:var(--sans);
  font-size:0.95rem;
  padding:0.85rem 1.2rem;
  outline:none;
  transition:border-color 0.2s;

}
 .newsletter-form input[type="email"]:focus {
  border-color:rgba(248,245,240,0.5);

}
 .newsletter-form input::placeholder {
  color:rgba(248,245,240,0.3);

}
 .newsletter-form button {
  padding:0.85rem 1.8rem;
  background:var(--red);
  color:var(--white);
  border:none;
  font-family:var(--sans);
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:500;
  cursor:pointer;
  transition:background 0.2s;
  white-space:nowrap;

}
 .newsletter-form button:hover {
  background:#a93226;

}
 .newsletter-note {
  margin-top:1rem;
  font-size:0.75rem;
  color:rgba(248,245,240,0.3);

}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.newsletter-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
}

.newsletter-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.newsletter-card a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
}

.newsletter-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.newsletter-icon svg {
  width: 100%;
  height: 100%;
}

.newsletter-form {
  margin-top: 1.5rem;
  width: 100%;
}

.newsletter-row {
  display: flex;
  width: 100%;
}

.newsletter-row input[type="email"] {
  flex: 1;
  min-width: 0;

  background: transparent;
  border: 1px solid rgba(248,245,240,0.2);
  border-right: none;

  color: var(--white);

  font-family: var(--sans);
  font-size: 0.95rem;

  padding: 0.85rem 1.2rem;

  outline: none;

  transition: border-color 0.2s;
}

.newsletter-row input[type="email"]:focus {
  border-color: rgba(248,245,240,0.5);
}

.newsletter-row input::placeholder {
  color: rgba(248,245,240,0.3);
}

.newsletter-row button {
  padding: 0.85rem 1.8rem;

  background: var(--red);
  color: var(--white);

  border: none;

  font-family: var(--sans);
  font-size: 0.78rem;

  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;

  cursor: pointer;

  transition: background 0.2s;

  white-space: nowrap;
}

.newsletter-row button:hover {
  background: #a93226;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
}

.newsletter-form button {
  white-space: nowrap;
}

@media (max-width: 768px) {

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

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row input[type="email"] {
    border-right: 1px solid rgba(248,245,240,0.2);
    margin-bottom: 0.75rem;
  }

  .newsletter-row button {
    width: 100%;
  }

}

 .social {
  background:#131313;

}
 .social-inner {
  max-width:600px;

}
 .social-inner p {
  color:rgba(248,245,240,0.65);
  margin-bottom:2rem;

}
 .social-links {
  display:flex;
  gap:1rem;

}
 .social-link {
  display:inline-block;
  padding:0.75rem 1.8rem;
  border:1px solid rgba(248,245,240,0.2);
  color:rgba(248,245,240,0.75);
  text-decoration:none;
  font-size:0.8rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  transition:border-color 0.2s,color 0.2s;

}
 .social-link:hover {
  border-color:var(--gold);
  color:var(--gold);

}
 
/* Kontakt */
.contact {
  background:var(--black);

}
 .contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  max-width:1000px;

}
 .contact-info {
  color:rgba(248,245,240,0.7);

}
 .contact-info p {
  margin-bottom:0.5rem;

}
 .contact-info a {
  color:var(--gold);
  text-decoration:none;

}
 .contact-form input,.contact-form textarea {
  width:100%;
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(248,245,240,0.2);
  color:var(--white);
  font-family:var(--sans);
  font-size:0.95rem;
  padding:0.75rem 0;
  margin-bottom:1.5rem;
  outline:none;
  display:block;
  transition:border-color 0.2s;

}
 .contact-form input:focus,.contact-form textarea:focus {
  border-bottom-color:var(--gold);

}
 .contact-form input::placeholder,.contact-form textarea::placeholder {
  color:rgba(248,245,240,0.3);

}
 .contact-form textarea {
  resize:vertical;
  min-height:120px;

}

.form-success {
  display: none;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(60, 180, 120, 0.1);
  border: 1px solid rgba(60, 180, 120, 0.3);
  color: #9be3b5;
}

 .supporters {
  background:#0a0a0a;
  padding:4rem 3rem;

}
 .supporters-label {
  font-size:0.7rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:2rem;

}
 .supporters-list {
  display:flex;
  gap:3rem;
  align-items:center;
  flex-wrap:wrap;

}
 .supporter-item {
  color:rgba(248,245,240,0.4);
  font-size:0.9rem;
  font-style:italic;
  font-family:var(--serif);

}
 
/* Footer */
footer {
  border-top:1px solid rgba(248,245,240,0.08);
  padding:2rem 3rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:0.78rem;
  color:var(--muted);
  background:var(--black);

}
 footer a {
  color:var(--muted);
  text-decoration:none;

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

}
 
/* === LEGAL PAGES (Impressum / Datenschutz) === */

.legal {
  max-width: 900px;
  margin: 140px 0 120px 8%;
  padding-right: 2rem;
}

.legal h1 {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.legal h2 {
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.75);
}

.legal a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 74, 58, 0.4);
}

.legal a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

.back-link {
  display: inline-block;
  margin-top: 3rem;
  opacity: 0.75;
}

/* Logo-Link nicht unterstreichen */
.nav-logo {
  border-bottom: none;
  text-decoration: none;
}

.nav-logo img {
  display: block;
}


/* === TESTIMONIALS === */

.testimonials {
  padding: 10rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, #1a1410 0%, #0e0e0e 70%);
}

.testimonial-slider-simple {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.6;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.65;
}

.dot {
  position: relative;
  width: 8px;          /* sichtbarer Punkt */
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* 🔥 UNSICHTBARE KLICKFLÄCHE */
.dot::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}

/* aktiver Punkt */
.dot.active {
  background: var(--red);
}

.dot:not(.active) {
  color: rgba(255,255,255,0.4);
}

/* 🔥 DAS IST DER WICHTIGE TEIL */
.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--white);
  margin-bottom: 2.5rem;
}

/* Autor */
.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--red);
}

/* Newsletter Anmeldung*/

.confirmation-page {
  max-width: 760px;
}

.confirmation-page .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.confirmation-page h1 {
  margin-bottom: 1.5rem;
}

.confirmation-button {
  display: inline-block;
  margin-top: 2rem;
  width: auto;
  padding: 0;
}

/* Galerie */
/* === STUECKE / ARCHIV === */

.stuecke {
  padding: 7rem 3rem;
background: radial-gradient(circle at top, #1a1410 0%, #0e0e0e 65%);
  color: var(--white);
}

.stuecke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stueck-card {
  background: #171717;
  border: 1px solid rgba(255,255,255,0.06);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;

  cursor: pointer;

  overflow: hidden;
}

.stueck-card:hover {
  transform: translateY(-8px);

  border-color: rgba(181,148,58,0.28);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(181,148,58,0.08);
}

.stueck-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.stueck-card h3 {
  color: #f8f5f0;
}

.stueck-year {
  color: #b5943a;
}

.stueck-card .stueck-year {
  color: rgba(248,245,240,0.7) !important;
}

.poster-icon {
  font-size: 2.4rem;
}

.poster-year {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.poster-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.15;
}

.stueck-info {
  padding: 1.5rem;
}

.stueck-year {
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.stueck-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.stueck-info span {
  color: var(--red);
  font-size: 0.85rem;
}

/* === LIGHTBOX === */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(14, 14, 14, 0.96);
  color: var(--white);
  overflow-y: auto;
  padding: 6rem 3rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
}

.lightbox-inner {
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}


.lightbox.open .lightbox-inner {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.lightbox-poster {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #2a1b16, #0e0e0e);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,245,240,0.5);
}

.lightbox-meta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.lightbox-meta p {
  max-width: 650px;
  color: rgba(248,245,240,0.72);
}

.lightbox-fotos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.lightbox-fotos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.lightbox-fotos img:hover {
  transform: scale(1.02);
}

.foto-placeholder {
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,245,240,0.45);
}

@media (max-width: 900px) {
  .stuecke-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 5rem 1.5rem;
  }

  .lightbox-header {
    grid-template-columns: 1fr;
  }

  .lightbox-poster {
    max-width: 280px;
  }

  .lightbox-fotos {
    grid-template-columns: 1fr;
  }
}

.stueck-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

    transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}


.stueck-card:hover .stueck-poster img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.lightbox-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === IMAGE VIEWER === */

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}


.image-viewer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-viewer img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.image-viewer img.is-changing {
  opacity: 0;
  transform: scale(0.98);
}

.image-viewer-close,
.image-viewer-arrow {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 2001;
}

.image-viewer-close,
.image-viewer-arrow {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 2001;
}

.image-viewer-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
}

.image-viewer-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
}

.image-viewer-prev {
  left: 1.5rem;
}

.image-viewer-next {
  right: 1.5rem;
}

.image-viewer-close:hover,
.image-viewer-arrow:hover {
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .image-viewer-arrow {
    width: 44px;
    height: 44px;
  }

  .image-viewer-prev {
    left: 0.75rem;
  }

  .image-viewer-next {
    right: 0.75rem;
  }
}

/* === SCROLL FADE IN === */

.fade-up {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-mobile {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-grid,
  .newsletter-grid,
  .stuecke-grid,
  .team-grid,
  .about-inner {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 5rem 1.5rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
  }

  .contact-info a,
  .contact-info p {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form .btn-primary {
    width: 100%;
  }

  .supporters {
    margin: 0 1.5rem;
    padding: 3rem 1.5rem;
  }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  footer div {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.form-alert {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-alert strong {
  font-weight: 700;
  font-size: 1rem;
}

.form-alert-success {
  background: rgba(60, 180, 90, 0.12);
  border: 1px solid rgba(60, 180, 90, 0.45);
  color: #7ee08f;
}

.form-alert-error {
  background: rgba(200, 50, 40, 0.12);
  border: 1px solid rgba(200, 50, 40, 0.45);
  color: #ff7b70;
}

.form-alert {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;

  opacity: 1;
  transition: opacity 0.5s ease;
}

.form-alert strong {
  font-weight: 700;
}

.form-alert-success {
  background: rgba(60, 180, 90, 0.12);
  border: 1px solid rgba(60, 180, 90, 0.45);
  color: #7ee08f;
}

.form-alert-error {
  background: rgba(200, 50, 40, 0.12);
  border: 1px solid rgba(200, 50, 40, 0.45);
  color: #ff7b70;
}

.fade-out {
  opacity: 0;
}

#newsletter-message {
  margin-bottom: 1rem;
}

#newsletter-message {
  margin: 1.5rem 0;
}

.newsletter-success-box {
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: rgba(60, 180, 90, 0.12);
  border: 1px solid rgba(60, 180, 90, 0.45);
  color: #7ee08f;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero .hero-title {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem) !important;
}

.hero {
  position: relative;
  overflow: hidden;
}

/* WICHTIG: altes ::before Overlay löschen! */

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;

  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(14,14,14,0.35),
      rgba(14,14,14,0.82)
    );

  z-index: 1;

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-scroll {
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.hero-cta {
  position: relative;
  z-index: 20;

  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-cta a {
  position: relative;
  z-index: 21;

  pointer-events: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

}


