*{
    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: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;

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

.overlay{
    min-height:85vh;

    display:flex;
    flex-direction:column;

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

    text-align:center;

    padding:20px;
    padding-bottom:70px;
}

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

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

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

/* =========================
   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:.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:75vh;
        padding-bottom:50px;
    }

    .logo{
        max-width:420px;
        margin-bottom:50px;
    }

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

}
```
