/* ================================= */
/* 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);}
}


/* ================================= */
/* HIGHLIGHT BOXEN (NEU) */
/* ================================= */

.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;
    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;
    }
}

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

.cart-link{
    position:relative;
}

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


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

.warenkorb_button_primary,
.warenkorb_button_secondary {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    text-decoration: none;
    margin-top: 20px;
}

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

.warenkorb_button_primary:hover {
    background-color: #600000;
}

.warenkorb_button_secondary {
    background-color: #ddd;
    color: black;
}

.warenkorb_button_secondary:hover {
    background-color: #ccc;
}


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

.warenkorb-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.warenkorb-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.warenkorb-item .warenkorb-image {
    flex: 0 0 80px;
    margin-right: 15px;
}

.warenkorb-item .warenkorb-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.warenkorb-item .warenkorb-info {
    flex: 1;
}

.warenkorb-item .warenkorb-info h3 {
    font-size: 16px;
    margin: 0;
}

.warenkorb-item .warenkorb-info p {
    font-size: 14px;
    color: #666;
}

.warenkorb-item .warenkorb-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.warenkorb-item .warenkorb-action a {
    background-color: #8b0000;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    margin: 5px 0;
    text-decoration: none;
}

.warenkorb-item .warenkorb-action a:hover {
    background-color: #600000;
}