/* ================================= */
/* GLOBAL */
/* ================================= */

body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#f4f4f4;
color:#333;
}

a{
text-decoration:none;
color:inherit;
}

h1,h2,h3{
margin-top:0;
}


/* ================================= */
/* HEADER */
/* ================================= */

.site-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:5px 10px;
background:#111;
color:white;

position:sticky;
top:0;
z-index:1000;

box-shadow:0 2px 10px rgba(0,0,0,0.3);
}

.logo img{
height:75px;
}

.site-header nav a{
color:white;
margin-left:20px;
font-size:15px;
}

.site-header nav a:hover{
color:#d4af37;
}


/* ================================= */
/* WARENKORB */
/* ================================= */

.cart-link{
position:relative;
}

.cart-count{
background:#8b0000;
color:white;
border-radius:50%;
padding:3px 8px;
font-size:12px;
margin-left:5px;
}


/* ================================= */
/* SLIDER */
/* ================================= */

.slider{
position:relative;
height:520px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transform:scale(1);
transition:opacity 1.5s ease, transform 8s ease;
}

.slide.active{
opacity:1;
transform:scale(1.08);
}

.slider-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.slider-overlay h1{
font-size:46px;
margin-bottom:10px;
color:#ffd700;
font-weight:600;
text-shadow:0 2px 10px rgba(0,0,0,0.6);
}

.slider-overlay p{
font-size:22px;
}


/* ================================= */
/* BÜHNENBEREICH */
/* ================================= */

.stage-section{
position:relative;
background:#0b0b0b;
padding:120px 20px;
text-align:center;
color:white;
overflow:hidden;
}

.stage-content{
max-width:900px;
margin:auto;
position:relative;
z-index:10;
}

.stage-content h2{
font-size:40px;
margin-bottom:20px;
}

.stage-intro{
font-size:22px;
margin-bottom:20px;
}

.stage-content p{
font-size:18px;
line-height:1.7;
margin-bottom:15px;
}

.stage-content strong{
color:#ffd700;
}


/* ================================= */
/* BÜHNEN SPOTLIGHTS */
/* ================================= */

.spotlight{
position:absolute;
top:-300px;
width:600px;
height:1200px;

background:radial-gradient(
ellipse at center,
rgba(255,255,220,0.45) 0%,
rgba(255,255,200,0.25) 35%,
rgba(255,255,200,0) 70%
);

pointer-events:none;
opacity:0.9;
}

.spotlight-left{
left:5%;
animation:spotlightLeft 4s ease-in-out infinite alternate;
}

.spotlight-center{
left:35%;
animation:spotlightCenter 3s ease-in-out infinite alternate;
}

.spotlight-right{
right:5%;
animation:spotlightRight 5s ease-in-out infinite alternate;
}

@keyframes spotlightLeft{
0%{transform:rotate(20deg);}
100%{transform:rotate(35deg);}
}

@keyframes spotlightCenter{
0%{transform:rotate(-5deg);}
100%{transform:rotate(10deg);}
}

@keyframes spotlightRight{
0%{transform:rotate(-35deg);}
100%{transform:rotate(-20deg);}
}


/* ================================= */
/* SUCHBEREICH */
/* ================================= */

.search{
background:#f9f9f9;
padding:40px;
text-align:center;
}

.search-form{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;
}

.search-form select,
.search-form input{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
min-width:150px;
}

.search-form button{
background:#8b0000;
color:white;
border:none;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}

.search-form button:hover{
background:#600000;
}


/* ================================= */
/* ERGEBNIS BEREICH */
/* ================================= */

.results{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.results h2{
text-align:center;
margin-bottom:30px;
font-size:28px;
color:#8b0000;
}


/* ================================= */
/* STÜCKE TABELLE */
/* ================================= */

.stuecke-table{
width:100%;
border-collapse:collapse;
margin-top:30px;
background:white;
}

.stuecke-table th,
.stuecke-table td{
padding:12px;
border-bottom:1px solid #ddd;
text-align:left;
}

.stuecke-table th{
background:#8b0000;
color:white;
}

.table-thumb{
width:70px;
border-radius:5px;
}

.titel-link{
font-weight:bold;
color:#8b0000;
}

.aktionen a{
margin-right:6px;
}


/* ================================= */
/* BUTTONS */
/* ================================= */

.btn-primary,
.btn-secondary{
display:inline-block;
padding:10px 14px;
border-radius:6px;
margin-top:5px;
}

.btn-primary{
background:#8b0000;
color:white;
}

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

.btn-secondary{
background:#ddd;
color:black;
}

.btn-secondary:hover{
background:#ccc;
}


/* ================================= */
/* STÜCK DETAILSEITE */
/* ================================= */

.stueck-detail{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.detail-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

.detail-image img{
width:100%;
border-radius:8px;
}

.detail-info h1{
font-size:36px;
margin-bottom:10px;
}

.detail-buttons{
margin-top:25px;
display:flex;
flex-direction:column;
gap:10px;
}


/* ================================= */
/* GALERIE */
/* ================================= */

.auffuehrungsbilder{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-top:10px;
}

.auffuehrungsbilder img{
width:100%;
border-radius:6px;
cursor:pointer;
transition:0.2s;
}

.auffuehrungsbilder img:hover{
transform:scale(1.05);
}


/* ================================= */
/* LIGHTBOX */
/* ================================= */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
justify-content:center;
align-items:center;
z-index:999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:8px;
}

.lightbox-close{
position:absolute;
top:20px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}


/* ================================= */
/* AUTOR HERO */
/* ================================= */

.autor-hero{
background:#111;
color:white;
padding:100px 20px;
}

.autor-hero-inner{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:350px 1fr;
gap:60px;
align-items:center;
}

.autor-bild img{
width:100%;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.autor-text h1{
font-size:46px;
margin-bottom:10px;
color:#ffd700;
}

.autor-subtitle{
font-size:20px;
margin-bottom:25px;
color:#ccc;
}

.autor-text p{
font-size:18px;
line-height:1.7;
margin-bottom:15px;
}

.autor-text strong{
color:#ffd700;
}


/* ================================= */
/* REGIE */
/* ================================= */

.regie-section{
padding:80px 20px;
background:white;
text-align:center;
}

.regie-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.regie-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.regie-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.regie-card img{
width:100%;
height:220px;
object-fit:cover;
}

.regie-info{
padding:20px;
}

.regie-year{
display:inline-block;
background:#8b0000;
color:white;
padding:4px 10px;
border-radius:4px;
font-size:13px;
margin-bottom:10px;
}


/* ================================= */
/* PRESSE */
/* ================================= */

.press-section{
background:#f4f4f4;
padding:80px 20px;
text-align:center;
}

.press-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.press-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.press-quote{
font-size:18px;
font-style:italic;
margin-bottom:20px;
}

.press-source{
color:#8b0000;
font-weight:bold;
}

.press-download a{
display:inline-block;
margin:10px;
padding:10px 20px;
background:#8b0000;
color:white;
border-radius:6px;
}

.press-download a:hover{
background:#600000;
}


/* ================================= */
/* AUTOR SEITEN ANIMATION */
/* ================================= */

.autor-hero,
.autor-philosophie,
.regie-section,
.press-section{

opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;

}

.autor-hero.visible,
.autor-philosophie.visible,
.regie-section.visible,
.press-section.visible{

opacity:1;
transform:translateY(0);

}


/* ================================= */
/* FOOTER */
/* ================================= */

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}


/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:900px){

.autor-hero-inner{
grid-template-columns:1fr;
text-align:center;
}

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

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

.detail-container{
grid-template-columns:1fr;
}

}

@media(max-width:700px){

.stuecke-table th:nth-child(3),
.stuecke-table th:nth-child(4),
.stuecke-table th:nth-child(5),
.stuecke-table td:nth-child(3),
.stuecke-table td:nth-child(4),
.stuecke-table td:nth-child(5){
display:none;
}

.table-thumb{
width:50px;
}

.stuecke-table th,
.stuecke-table td{
padding:8px;
font-size:14px;
}

}

@media(max-width:600px){

.slider-overlay h1{
font-size:32px;
}

}
/* ================================= */
/* KONTAKT */
/* ================================= */

.kontakt-section{
max-width:1200px;
margin:auto;
padding:80px 20px;
opacity:1;
transform:none;
}

.kontakt-container{
max-width:1000px;
margin:auto;
}

.kontakt-intro{
text-align:center;
margin-bottom:40px;
}

.kontakt-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.kontakt-info{
background:#f4f4f4;
padding:30px;
border-radius:8px;
}

.kontakt-formular input,
.kontakt-formular textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}

.kontakt-formular textarea{
height:150px;
}

.kontakt-erfolg{
background:#dff0d8;
padding:15px;
margin-bottom:20px;
border-radius:5px;
}

@media(max-width:800px){
.kontakt-grid{
grid-template-columns:1fr;
}
}
/* ================================= */
/* BESTELLFORMULAR */
/* ================================= */

.form-card{
max-width:900px;
margin:40px auto;
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group label{
font-weight:bold;
margin-bottom:6px;
}

.form-group input{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:15px;
}

.form-group input:focus{
outline:none;
border-color:#8b0000;
box-shadow:0 0 0 2px rgba(139,0,0,0.1);
}

.form-group.full{
grid-column:1 / 3;
}

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

.form-card .btn-secondary{
margin-left:10px;
}

/* MOBILE */

@media(max-width:700px){

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

.form-group.full{
grid-column:auto;
}

}
/* ================================= */
/* DATENSCHUTZ LINK */
/* ================================= */

.datenschutz-box{
margin:20px 0;
padding:12px;
background:#f9f9f9;
border-left:4px solid #8b0000;
border-radius:6px;
font-size:14px;
}

.datenschutz-box a{
color:#8b0000;
font-weight:bold;
text-decoration:underline;
}

.datenschutz-box a:hover{
color:#600000;
}
.bestell-info{
background:#fff8f0;
border-left:4px solid #8b0000;
padding:15px 20px;
margin:15px 0 25px 0;
font-size:15px;
line-height:1.6;
}
/* ================================= */
/* HIGHLIGHT SECTION */
/* ================================= */

.highlight-section{
background-color:#000;
padding:50px 20px;
}


.highlight-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.highlight-box{
background:#000;
color:#ffd700;
border:2px solid #ffd700; /* Gelbe Umrahmung */
padding:25px;
border-radius:70px;
text-align:center;
cursor:pointer;
transition: 0.4s;
}

/* Schriftgröße anpassen */
.highlight-box h3{
font-size:22px;
margin-bottom:15px;
}

.highlight-box p{
font-size:20px;
line-height:1.5;
}


/* Hover-Effekt */
.highlight-box:hover{
background:#ffd700;
color:#000;
transform:scale(1.05);
}

/* Für Text in allen Boxen außer Publikumslieblinge */
.highlight-text{
font-size:32px;
font-weight:bold;
}

/* Nummer in der Box ganz groß */
.highlight-number{
font-size:48px;
font-weight:bold;
margin-top:10px;
}

/* Responsiveness für kleinere Bildschirme */
@media(max-width:900px){
.highlight-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.highlight-grid{
grid-template-columns:1fr;
}
}
/* ================================= */
/* KONTAKTAUFFORDERUNG */
/* ================================= */

.kontakt-info{

background-color:#ffd700;
padding:25px;
border-radius:8px;
text-align:center;
color:#000;
margin-top:30px;
}

.kontakt-info h3{
font-size:24px;
margin-bottom:10px;
}

.kontakt-info p{
font-size:18px;
line-height:1.7;
margin-bottom:20px;
}

.kontakt-info .btn-primary{
background:#8b0000;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.kontakt-info .btn-primary:hover{
background:#600000;
}