/* ===========================================
   DISTRICT
=========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;

    background:#050505;

    color:#fff;

    overflow-x:hidden;

}

/* Hintergrund */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top,
    rgba(122,16,16,.15),
    transparent 60%);

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);

    background-size:80px 80px;

    opacity:.3;

    z-index:-1;

}

/* HEADER */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:85px;

    padding:0 70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    backdrop-filter:blur(18px);

    background:rgba(5,5,5,.75);

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

    z-index:999;

}

.logo{

    font-size:40px;

    font-weight:900;

    letter-spacing:8px;

}

nav{

    display:flex;

    gap:45px;

}

nav a{

    color:white;

    text-decoration:none;

    font-size:14px;

    letter-spacing:2px;

    transition:.3s;

}

nav a:hover{

    color:#8B0000;

}

.menu{

    display:none;

    font-size:32px;

    cursor:pointer;

}

/* HERO */

.hero{

    position:relative;

    height:100vh;

    background:url("images/background.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);

}

.hero-content{

    position:relative;

    z-index:2;

}

.subtitle{

    color:#a31313;

    font-size:18px;

    letter-spacing:7px;

}

.hero h1 {
    font-size: clamp(60px, 10vw, 100px);
    font-weight: 900;
    letter-spacing: 8px;
    margin: 20px 0;
}

.hero p{

    font-size:28px;

    color:#d2d2d2;

    letter-spacing:2px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:50px;

}

.btn{

    background:#8B0000;

    color:white;

    text-decoration:none;

    padding:18px 50px;

    border-radius:6px;

    transition:.3s;

}

.btn:hover{

    background:#a31313;

    transform:translateY(-4px);

}

.btn2{

    border:1px solid #8B0000;

    color:white;

    text-decoration:none;

    padding:18px 50px;

    border-radius:6px;

    transition:.3s;

}

.btn2:hover{

    background:#8B0000;

}

/* SCROLL */

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    width:25px;

    height:25px;

    display:block;

    border-right:2px solid #8B0000;

    border-bottom:2px solid #8B0000;

    transform:rotate(45deg);

    animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

opacity:0;

transform:rotate(45deg) translate(-10px,-10px);

}

50%{

opacity:1;

}

100%{

opacity:0;

transform:rotate(45deg) translate(10px,10px);

}

}
/* ===================================
   ABOUT
=================================== */

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding:140px 8%;

}

.about-text span{

    color:#8B0000;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

}

.about-text h2{

    font-size:56px;

    margin:20px 0;

    line-height:1.1;

}

.about-text p{

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:35px;

}

.outline-btn{

    display:inline-block;

    padding:16px 40px;

    border:1px solid #8B0000;

    color:white;

    text-decoration:none;

    transition:.35s;

}

.outline-btn:hover{

    background:#8B0000;

}

.about-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:14px;

}



/* ===================================
   EVENTS
=================================== */

.events{

    padding:120px 8%;

}

.section-title{

    margin-bottom:50px;

}

.section-title span{

    color:#8B0000;

    letter-spacing:3px;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

}

.event-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#101010;

    border:1px solid #222;

    padding:45px;

    border-radius:14px;

    transition:.35s;

}

.event-card:hover{

    border-color:#8B0000;

    transform:translateY(-8px);

}

.event-left h3{

    font-size:34px;

    margin-bottom:15px;

}

.event-left p{

    color:#bdbdbd;

    margin:8px 0;

}



/* ===================================
   ARTISTS
=================================== */

.artists-section{

    padding:120px 8%;

}

.artists-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

.artist{

    background:#101010;

    border-radius:14px;

    overflow:hidden;

    border:1px solid #222;

    transition:.35s;

}

.artist:hover{

    transform:translateY(-10px);

    border-color:#8B0000;

}

.artist img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.artist h3{

    padding:20px 20px 8px;

}

.artist p{

    padding:0 20px 25px;

    color:#bdbdbd;

}



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

footer{

    padding:80px 8%;

    text-align:center;

    border-top:1px solid #222;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    margin:30px 0;

}

.footer-links a{

    color:white;

    text-decoration:none;

}

.footer-links a:hover{

    color:#8B0000;

}

.copyright{

    color:#666;

}



/* ===================================
   SCROLL ANIMATION
=================================== */

.hidden{

    opacity:0;

    transform:translateY(80px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}



/* ===================================
   MOBILE
=================================== */

@media(max-width:950px){

header{

padding:0 25px;

}

.menu{

display:block;

}

nav{

position:fixed;

top:85px;

right:-100%;

width:260px;

height:100vh;

background:#050505;

display:flex;

flex-direction:column;

padding:50px 30px;

transition:.4s;

}

nav.active{

right:0;

}

.hero h1{

font-size:70px;

letter-spacing:5px;

}

.hero p{

font-size:18px;

}

.about{

grid-template-columns:1fr;

}

.about-image img{

height:420px;

}

.event-card{

flex-direction:column;

gap:30px;

text-align:center;

}

.artists-grid{

grid-template-columns:1fr;

}

.footer-links{

flex-direction:column;

gap:20px;

}

}