/* :root{
    --bg:#12151a;
    --card:#1b1f27;
    --text:#e6e6e6;
    --muted:#a9b0bb;
    --accent:#e10600; 
    --border:#2a2f3a;
} */

.logo-joker { color: var(--fgX); font-weight: 400; }
.logo-x { color: var(--accentX); font-weight: 600; }



    :root{
    --bg:#000000;
    --card:#0d0d0d;
    --text:#e6e6e6;
    --muted:#9a9a9a;
    --accent:#e10600;
    --border:#1a1a1a;
    --fgX: #f3f3f3;
  --accentX:  #00ff00;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}
html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:110px;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 40px;
    /* background:rgba(18,21,26,0.95); */
    background:rgba(0,0,0,0.88);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    border-bottom:1px solid var(--border);
    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:bold;
    font-size:20px;
    min-height:68px;
}

.logo{
    text-decoration:none;
    color:var(--text);
    transition:0.25s ease;
}

.logo:hover{
    opacity:0.9;
    transform:scale(1.01);
}

.logo-box{
    width:30px;
    height:30px;
    background:black;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--accent);
    border-radius:6px;
}

.logo-box::after{
    content:"⚡";
    color:var(--accent);
    font-size:16px;
}

/* NAV */
nav a{
    color:var(--text);
    text-decoration:none;
    margin-left:20px;
    font-size:14px;
}

nav a:hover{
    color:var(--accent);
}

/* HERO */
/* .hero{
    padding:80px 40px;
    text-align:center;
    background:linear-gradient(135deg,#151a22,#0f1217);
} */



.hero{
    padding:70px 20px 90px;
    text-align:center;
    /* background: linear-gradient(rgba(15,18,23,0.88), rgba(15,18,23,0.94)), */
     background:linear-gradient(180deg,#000,#080808);
    url('../assets/LogoKurt.jpeg') center/contain no-repeat,
    linear-gradient(135deg,#151a22,#0f1217);
}
.hero-logo{
    width:min(520px, 92%);
    height:auto;
    margin:0 auto 35px;
    display:block;
    border-radius:22px;
    background:#000;
    padding:18px;
    object-fit:contain;
    image-rendering:auto;
    box-shadow:0 15px 50px rgba(0,0,0,0.45);
}

.hero h1{
    font-size:48px;
    margin-bottom:18px;
    line-height:1.15;
}

.hero p{
    font-size:18px;
    max-width:760px;
    margin:0 auto 30px;
    color:#d0d6df;
}

@media(max-width:700px){

    .hero{
        padding:60px 20px 70px;
    }

    .hero-logo{
        width:min(320px, 92%);
        padding:12px;
        margin-bottom:25px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    color:var(--muted);
    max-width:600px;
    margin:0 auto 25px auto;
}

.btn{
    display:inline-block;
    background:var(--accent);
    color:white;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
}

/* SECTIONS */
section{
    padding:60px 40px;
}

.section-title{
    font-size:26px;
    margin-bottom:25px;
    border-left:4px solid var(--accent);
    padding-left:10px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.card{
    background:var(--card);
    padding:20px;
    border-radius:10px;
    border:1px solid var(--border);
}

.card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:10px;
}



input, textarea{
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border-radius:6px;
    border:1px solid var(--border);
    background:#0f1217;
    color:white;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    border-top:1px solid var(--border);
    color:var(--muted);
    font-size:13px;
}
.gallery-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
}

.gallery-slider::-webkit-scrollbar{
    height:8px;
}

.gallery-slider::-webkit-scrollbar-thumb{
    background:var(--border);
    border-radius:10px;
}

.gallery-item{
    min-width:320px;
    flex:0 0 auto;
    scroll-snap-align:start;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.gallery-text{
    padding:15px;
    color:var(--muted);
    font-size:14px;
}

@media(max-width:700px){

    .gallery-item{
        min-width:85%;
    }

    .gallery-item img{
        height:220px;
    }
}

/* RESPONSIVE */
@media(max-width:900px){

    .grid{
        grid-template-columns:1fr;
    }

    .contact{
        grid-template-columns:1fr; /* WICHTIG */
    }

    header{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    nav{
        display:none;
    }

    nav.active{
        display:flex;
    }
}



.contact .card{
    width:100%;
}

.logo{
    font-size:16px;
}

@media(max-width:500px){
    .logo{
        font-size:14px;
    }
}

.logo-img{
    height:68px;
    width:auto;
    display:block;
    border-radius:8px;
}
/* BURGER MENU */
.burger{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* Mobile Menü */
@media(max-width:900px){

    .burger{
        display:block;
    }

    nav{
        display:none;
        flex-direction:column;
        width:100%;
        background:var(--card);
        position:absolute;
        top:70px;
        left:0;
        padding:20px;
        border-top:1px solid var(--border);
    }

    nav a{
        margin:10px 0;
        font-size:16px;
    }

    nav.active{
        display:flex;
    }
}
.logo{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:bold;
    font-size:20px;
}

.logo-wrapper{
    width:78px;
    height:78px;
    overflow:hidden;
    border-radius:10px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
}

.logo-img{
    height:120%;
    width:auto;
    object-fit:cover;
    transform:scale(1.35);
    display:block;
}
.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    max-width:520px;
    background:#1b1f27;
    border:1px solid #2a2f3a;
    border-radius:14px;
    padding:20px;
    z-index:99999;
    box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

.cookie-banner h3{
    margin-bottom:10px;
    font-size:18px;
}

.cookie-banner p{
    color:#a9b0bb;
    font-size:14px;
    margin-bottom:15px;
}

.cookie-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.cookie-btn{
    border:none;
    padding:10px 16px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

.cookie-accept{
    background:#e10600;
    color:#fff;
}

.cookie-essential{
    background:#2a2f3a;
    color:#fff;
}

.cookie-hidden{
    display:none;
}