:root {
    --color-red: #D92525;
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-olive: #6b7038;
    --font-display: 'Shrikhand', cursive;
    --font-body: 'Poppins', sans-serif;
    --nav-height: 80px;
}

/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: var(--color-black); 
    color: var(--color-white); 
    font-family: var(--font-body); 
    overflow-x: hidden; 
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: var(--nav-height);
    padding: 0 5vw; display: flex; justify-content: space-between; align-items: center; 
    z-index: 1000; transition: background 0.3s ease;
    mix-blend-mode: difference; /* Sorgt dafür, dass das Logo immer lesbar ist */
}

.nav-logo { 
    font-family: var(--font-display); font-size: 1.5rem; color: white; text-decoration: none; 
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { 
    color: white; text-decoration: none; font-weight: 600; 
    text-transform: uppercase; font-size: 0.9rem; transition: 0.3s; 
}
.nav-links a:hover { color: var(--color-red); }

/* Hamburger Menu (Hidden on Desktop) */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { 
    display: block; width: 25px; height: 3px; background-color: white; 
    transition: 0.3s; 
}

/* Mobile Menu Overlay (Hidden by default) */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--color-black); z-index: 999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 40px; transform: translateY(-100%); transition: transform 0.4s ease-in-out;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-link { 
    font-family: var(--font-display); font-size: 3rem; color: white; 
    text-decoration: none; transition: 0.3s; 
}
.mobile-link:hover { color: var(--color-red); }

/* --- HERO --- */
.hero {
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-color: var(--color-white); 
    position: relative; 
    overflow: hidden;
}

/* Das Logo */
.hero-logo {
    width: clamp(300px, 60vw, 400px); /* Passt sich der Bildschirmgröße an */
    height: auto;
    z-index: 1;
    animation: floatLogo 6s ease-in-out infinite; /* Sanftes Schaukeln */
}

/* Die Animation */
@keyframes floatLogo {
    0% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0) rotate(-2deg); }
}

/* --- BAND HERO --- */
.band-hero { padding: 100px 5vw; background-color: var(--color-white); display: flex; justify-content: center; }
.band-container {
    position: relative; width: 100%; max-width: 1200px; height: 70vh;
    border-radius: 30px; overflow: hidden; transform: rotate(1deg);
    box-shadow: 30px 30px 0px var(--color-red); transition: transform 0.3s;
}
.band-container:hover { transform: rotate(0deg) scale(1.02); }
.band-full-img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: saturate(1.2) contrast(1.1); 
}
.band-overlay-text {
    position: absolute; bottom: 40px; left: 40px;
    background: var(--color-black); color: var(--color-white);
    padding: 10px 30px; transform: rotate(-3deg);
}
.band-overlay-text h2 { margin: 0; font-family: var(--font-display); font-size: 3rem; }

/* --- ABOUT --- */
.about {
    background-color: var(--color-red); padding: 100px 5vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img-container {
    height: 600px; border-radius: 20px; overflow: hidden;
    box-shadow: 20px 20px 0px var(--color-black);
    transform: rotate(-2deg); transition: transform 0.3s;
}
.about-img-container img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: contrast(1.2) grayscale(100%); 
}
.badge { background: black; color: white; padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; }
.about-text h2 { font-family: var(--font-display); font-size: 4rem; line-height: 1; margin: 20px 0; }
.about-text p { font-size: 1.1rem; line-height: 1.6; max-width: 500px; }

/* --- MERCH --- */
.merch { background: #f4f4f4; color: var(--color-black); padding: 100px 10vw; }
.merch h2 { text-align: center; font-family: var(--font-display); font-size: 4rem; margin-bottom: 60px; }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.merch-item {
    background: white; border-radius: 20px; padding: 30px; text-align: center;
    transition: 0.3s;
}
.merch-item:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.merch-visual { height: 250px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.merch-visual img { max-width: 80%; max-height: 100%; object-fit: contain; }
.rotate-visual { transform: rotate(-15deg); }

/* --- GALLERY --- */
.gallery-wrapper { background: var(--color-black); padding: 50px 0; }
.marquee { 
    background: var(--color-olive); color: white; padding: 15px 0; overflow: hidden; 
    border-top: 2px solid white; border-bottom: 2px solid white; margin-bottom: 50px; 
}
.marquee-content { display: flex; white-space: nowrap; animation: marquee 20s linear infinite; }
.marquee-content span { font-family: var(--font-display); font-size: 2rem; padding-right: 50px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 0 15px; }
.gallery-img { 
    width: 100%; height: 350px; object-fit: cover; border-radius: 5px; 
    opacity: 0.8; transition: 0.4s; filter: grayscale(0.3); 
}
.gallery-img:hover { opacity: 1; filter: grayscale(0); transform: scale(1.03); z-index: 2; }
.gallery-item:nth-child(2) { margin-top: 50px; }
.gallery-item:nth-child(3) { margin-top: -30px; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* --- FOOTER --- */
footer { background: var(--color-red); padding: 80px 20px; text-align: center; }
footer h2 { font-family: var(--font-display); font-size: 3rem; }
.contact-btn { 
    background: white; color: black; padding: 15px 40px; border-radius: 50px; 
    text-decoration: none; font-weight: bold; font-size: 1.2rem; display: inline-block; 
    margin-top: 20px; transition: 0.3s; 
}
.contact-btn:hover { background: black; color: white; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Verhindert, dass Schatten oder Rotationen den Viewport sprengen */
    * {
        max-width: 100vw;
    }

    .nav-links { display: none; }
    .hamburger { display: flex; z-index: 1001; }
    
    /* Hero Logo Anpassung */
    .hero-logo {
        width: 65vw; /* Etwas kleiner auf Mobile, damit Platz zum Atmen ist */
    }

    /* Band Container Fix: Schatten verkleinern und Rotation entfernen */
    .band-container { 
        height: 50vh; 
        width: 100%;
        transform: rotate(0deg); /* Rotation auf Mobile oft problematisch */
        box-shadow: 15px 15px 0px var(--color-red); /* Schatten halbieren */
        margin-bottom: 20px;
    }
    
    .band-overlay-text h2 { font-size: 1.8rem; }
    
    /* About Sektion Fix */
    .about { 
        grid-template-columns: 1fr; 
        padding: 60px 20px;
        overflow: hidden; 
    }
    .about-img-container { 
        height: 350px; 
        transform: rotate(0deg); 
        box-shadow: 10px 10px 0px var(--color-black);
        width: calc(100% - 10px); /* Platz für den Schatten lassen */
    }
    
    .about-text h2 { font-size: 2.8rem; }
    .merch h2 { font-size: 2.8rem; }
    
    /* Gallery Fix */
    .gallery-grid { 
        display: flex; 
        flex-direction: column; 
        gap: 15px; 
        padding: 0 15px; 
    }
    .gallery-item { margin: 0 !important; width: 100%; }
    .gallery-img { height: 300px; width: 100%; }

    /* Marquee Fix: Sicherstellen, dass es nicht scrollt */
    .marquee {
        width: 100vw;
        overflow: hidden;
    }
}
