*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}

/* =========================
   NAVIGATION
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

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

    padding:18px 40px;

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;
}

.nav-logo a{
    color:#fff;
    text-decoration:none;

    font-size:1.5rem;
    font-weight:700;

    letter-spacing:3px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;

    font-size:1rem;
    font-weight:500;

    transition:.2s ease;
}

.nav-links a:hover{
    color:#d42d2d;
}

.nav-links a.active{
    color:#d42d2d;
}

/* Mobile Navigation */

@media(max-width:900px){

    .navbar{
        padding:15px 20px;
    }

    .nav-links{
        gap:18px;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    .nav-logo a{
        font-size:1.3rem;
    }

    .nav-links{
        gap:14px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .nav-links a{
        font-size:.95rem;
    }

}

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

.hero{
    min-height:85vh;

    padding-top:80px;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    ),
    url('../img/reckless-hero-1920.webp');

    background-size:cover;
    background-position:center 25%;
}

.overlay{
    min-height:calc(85vh - 80px);

    display:flex;
    flex-direction:column;

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

    text-align:center;

    padding:20px;
    padding-top:60px;

    gap:15px;
}

.logo{
    max-width:600px;
    width:85%;
    margin-bottom:0;
	margin-top:80px;
}

.hero h1{
    font-size:4rem;
    line-height:1.15;
    margin:0;
    max-width:850px;
}

.hero p{
    font-size:1.4rem;
    opacity:.9;
    margin:0;
}

/* =========================
   ANSTEHENDER TERMIN / COUNTDOWN
========================= */
.next-show{
    padding:60px 20px;
    text-align:center;
    background:#080808;
}

.next-show h2{
    color:#fff;
    margin-bottom:30px;
}

.next-show-card{
    max-width:700px;
    margin:auto;
    background:#111;
    border-radius:12px;
    padding:30px;
}

.next-date{
    color:#d42d2d;
    font-size:1.5rem;
    font-weight:bold;
}

#countdown{
    color:#fff;
    font-size:1.8rem;
    margin:15px 0 25px;
    font-weight:bold;
    animation:pulse 5s infinite;
}

@keyframes pulse{
    0%{
        opacity:0.8;
    }
    50%{
        opacity:1;
    }
    100%{
        opacity:0.8;
    }
}

.next-show-card h3{
    color:#fff;
    margin-bottom:10px;
}

.next-show-card p{
    color:#ccc;
    margin-bottom:25px;
}


/* =========================
   TERMINE / ARCHIV
========================= */

.termine-grid{
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.termin-card{
    background:#151515;
    border:1px solid #333;
    border-radius:12px;
    padding:25px;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.termin-card:hover{
    border-color:#d42d2d;
    transform:translateY(-3px);
}

.termin-datum{
    color:#d42d2d;
    font-weight:bold;
    font-size:1.05rem;
    margin-bottom:15px;
}

.termin-card h2{
    color:#fff;
    font-size:1.9rem;
    line-height:1.25;
    margin-bottom:15px;
}

.termin-ort{
    color:#bbb;
    font-size:1.1rem;
    margin-bottom:20px;
}

.termin-button{
    display:inline-block;

    background:#d42d2d;
    color:#fff;

    text-decoration:none;

    padding:12px 22px;
    border-radius:6px;

    transition:.2s ease;
}

.termin-button:hover{
    background:#f03b3b;
}

/* =========================
   JAHRESTRENNER
========================= */

.jahr-trenner{
    grid-column:1/-1;

    display:flex;
    align-items:center;

    margin:60px 0 25px;
}

.jahr-trenner::before,
.jahr-trenner::after{
    content:"";
    flex:1;
    height:1px;
    background:#444;
}

.jahr-trenner span{
    padding:0 20px;
    color:#d42d2d;
    font-size:2rem;
    font-weight:bold;
}

/* =========================
   EVENTSEITEN
========================= */

.event-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:60px 25px;
}

.breadcrumb{
    color:#888;
    font-size:14px;
    margin-bottom:30px;
}

.breadcrumb a{
    color:#888;
    text-decoration:none;
}

.breadcrumb a:hover{
    color:#fff;
}

.event-meta{
    max-width:700px;

    margin:0 auto 60px auto;

    background:#111;
    border:1px solid #333;
    border-radius:12px;

    padding:25px;
}

.event-meta p{
    margin:12px 0;
    font-size:1.2rem;
}

.event-content{
    max-width:900px;
    margin:0 auto;

    font-size:1.25rem;
    line-height:1.9;
}

.event-content h1{
    font-size:4rem;
    line-height:1.15;
    margin-bottom:30px;
}

.event-content h2{
    font-size:2.4rem;
    margin-top:50px;
    margin-bottom:25px;
}

.event-content h3{
    margin-top:40px;
    margin-bottom:20px;
}

.event-content p{
    margin-bottom:25px;
}

.event-content img{
    max-width:100%;
    height:auto;
    border-radius:8px;
}

.event-content a{
    color:#d42d2d;
}

.event-content a:hover{
    color:#f03b3b;
}

.back-link{
    text-align:center;
    margin-top:70px;
}

.back-link a{
    display:inline-block;

    background:#d42d2d;
    color:#fff;

    text-decoration:none;

    padding:14px 28px;
    border-radius:8px;

    transition:.2s ease;
}

.back-link a:hover{
    background:#f03b3b;
}

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

@media(max-width:1024px){

    .hero h1{
        font-size:3.2rem;
    }

}

@media(max-width:768px){

    .hero{
        min-height:75vh;
    }

	.overlay{
		min-height:calc(75vh - 80px);
		padding-top:120px;
		padding-bottom:50px;
	}
	
    .logo{
        max-width:420px;
        margin-top:50px;
		margin-bottom:10px;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero p{
        font-size:1.1rem;
    }

    .event-content{
        font-size:1.05rem;
    }

    .event-content h1{
        font-size:2.3rem;
    }

    .event-content h2{
        font-size:1.8rem;
    }

    .termin-card h2{
        font-size:1.5rem;
    }

    .jahr-trenner span{
        font-size:1.5rem;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:1.9rem;
    }

    .logo{
        max-width:320px;
    }

    .termin-card{
        padding:20px;
    }

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

.footer{
    margin-top:80px;
    padding:30px 20px;

    border-top:1px solid #222;

    background:#080808;
}

.footer-inner{
    max-width:1200px;
    margin:0 auto;

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

    gap:20px;
}

.footer p{
    margin:0;
    color:#888;
    font-size:.95rem;
}

.footer-links{
    display:flex;
    gap:15px;
    align-items:center;
}

.footer-links a{
    color:#bbb;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d42d2d;
}

.footer-links span{
    color:#444;
}

@media(max-width:768px){

    .footer-inner{
        flex-direction:column;
        text-align:center;
    }

}

/* =========================
   KONTAKTFORMULAR
========================= */

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

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

.form-group label{
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    background:#151515;
    border:1px solid #333;
    border-radius:8px;

    color:#fff;

    padding:14px 16px;
    font-size:1rem;

    transition:.2s ease;
}

.form-group textarea{
    resize:vertical;
    min-height:250px;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#d42d2d;

    box-shadow:
        0 0 0 1px #d42d2d,
        0 0 15px rgba(212,45,45,.25);
}

.form-dsgvo{
    margin-top:25px;
}

.form-dsgvo label{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.form-dsgvo input[type="checkbox"]{
    width:18px;
    height:18px;
    margin-top:4px;
    flex-shrink:0;
}

.form-dsgvo a{
    color:#d42d2d;
    text-decoration:none;
}

.form-dsgvo a:hover{
    color:#f03b3b;
}

.kontakt-box{
    background:#0d0d0d;
    border:1px solid #222;
    border-radius:16px;
    padding:40px;
}

@media(max-width:768px){

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

    .kontakt-box{
        padding:25px;
    }

}

/* =========================
   GALLERY PREVIEW
========================= */
.gallery-preview{
    padding:80px 20px;
    text-align:center;
    background:#111;
}

.gallery-teaser{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:1200px;
    margin:30px auto;
}

.gallery-teaser img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    transition:0.3s;
}

.gallery-teaser img:hover{
    transform:scale(1.03);
}

@media (max-width:768px){

    .gallery-preview{
        padding:50px 15px;
    }

    .gallery-teaser{
        grid-template-columns:1fr;
        gap:12px;
    }

    .gallery-teaser img{
        height:140px;
    }

}