/* ========================================= */
/* 1. GLOBAL RESET & GRUNDLAYOUT             */
/* ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d url('img/grunge-texture.jpg') center/cover no-repeat fixed;
    color: #e6e6e6;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #ff6a00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: #ff6a00;
    text-decoration: none;
}


/* ========================================= */
/* 2. HEADER, LOGO & NAVIGATION              */
/* ========================================= */

header {
    text-align: center;
    padding: 5px 0 10px 0; /* Viel weniger Abstand oben */
}

.logo {
    width: 260px;
    height: auto;
    margin-bottom: 10px;

@media (min-width: 1024px) {
    .logo {
        width: 420px;   /* Größeres Logo für PC */
        margin-top: 10px;
    }
}

}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #ff6a00;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
}

nav a:hover,
nav a.active {
    color: #ffa64d;
    text-shadow: 0 0 8px rgba(255, 120, 0, 0.8);
}


/* ========================================= */
/* 3. ANIMIERTES INTRO (GLITCH + RAUCH)      */
/* ========================================= */

.intro {
    width: 100%;
    height: 100vh;
    background: url('img/smoke-overlay.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 2.8s ease forwards;
}

.intro-text {
    font-size: 80px;
    color: #ff6a00;
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: glitch 1.5s infinite;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes glitch {
    0% { text-shadow: 3px 3px #ff6a00; }
    20% { text-shadow: -3px -3px #ff3c00; }
    40% { text-shadow: 3px -3px #ff6a00; }
    60% { text-shadow: -3px 3px #ff3c00; }
    80% { text-shadow: 2px 2px #ff6a00; }
    100% { text-shadow: -2px -2px #ff3c00; }
}


/* ========================================= */
/* 4. HERO-BEREICH (STARTSEITE)              */
/* ========================================= */

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero p {
    max-width: 700px;
    margin: 20px auto;
    font-size: 20px;
    color: #d9d9d9;
}


/* ========================================= */
/* 5. SOCIAL MEDIA BUTTONS                   */
/* ========================================= */

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-btn {
    padding: 12px 28px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff6a00;
    border: 2px solid #ff6a00;
    background: rgba(0, 0, 0, 0.45);
    letter-spacing: 2px;
    border-radius: 4px;
    transition: 0.25s ease-in-out;
    box-shadow: 0 0 12px rgba(255, 100, 0, 0.4);
}

.social-btn:hover {
    background: #ff6a00;
    color: #000;
    box-shadow: 0 0 18px rgba(255, 120, 0, 0.8);
    transform: scale(1.05);
}


/* ========================================= */
/* 6. MITGLIEDERSEITE                        */
/* ========================================= */

.members {
    padding: 60px 20px;
    text-align: center;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.member img {
    width: 100%;
    border: 3px solid #ff6a00;
    box-shadow: 0 0 12px rgba(255, 100, 0, 0.4);
}

.member h3 {
    margin-top: 10px;
    color: #ffa64d;
}


/* ========================================= */
/* 7. KONTAKTSEITE                           */
/* ========================================= */

.contact {
    text-align: center;
    padding: 60px 20px;
}

.contact-box {
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #ff6a00;
    width: 300px;
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 12px rgba(255, 100, 0, 0.4);
}

.contact-box a {
    color: #ff6a00;
    font-size: 20px;
}


/* ========================================= */
/* 8. GALERIE – DELUXE VERSION               */
/* ========================================= */

.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.cat-btn {
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
    border: 2px solid #ff6a00;
    color: #ff6a00;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}

.cat-btn:hover,
.cat-btn.active {
    background: #ff6a00;
    color: #000;
    box-shadow: 0 0 12px rgba(255,120,0,0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item img {
    width: 100%;
    border: 3px solid #ff6a00;
    transition: 0.3s;
    filter: brightness(0.8);
}

.gallery-item img:hover {
    filter: brightness(1);
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255,120,0,0.8);
}


/* ========================================= */
/* 9. LIGHTBOX (BILD GROSS)                  */
/* ========================================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    animation: glitch 0.4s;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid #ff6a00;
    box-shadow: 0 0 20px rgba(255,120,0,0.8);
}


/* ========================================= */
/* 10. TERMINE-SEITE                         */
/* ========================================= */

.events {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.event-box {
    background: rgba(0,0,0,0.45);
    border: 2px solid #ff6a00;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    box-shadow: 0 0 12px rgba(255,120,0,0.4);
    transition: 0.25s;
}

.event-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 18px rgba(255,120,0,0.8);
}

.event-box h2 {
    color: #ffa64d;
    margin-bottom: 10px;
}

.event-box p {
    margin-bottom: 8px;
    font-size: 18px;
}


/* ========================================= */
/* 11. RECHTSTEXTE (IMPRESSUM & DATENSCHUTZ) */
/* ========================================= */

.legal {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal p, .legal li {
    font-size: 18px;
    margin-bottom: 15px;
}

.legal ul {
    margin-left: 20px;
}


/* ========================================= */
/* 12. FOOTER                                */
/* ========================================= */

footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    color: #777;
    font-size: 14px;
    background: rgba(0,0,0,0.6);
}

footer a {
    color: #ff6a00;
}

footer a:hover {
    text-shadow: 0 0 6px rgba(255,120,0,0.8);
}


/* ========================================= */
/* 13. RESPONSIVE DESIGN                     */
/* ========================================= */

@media (max-width: 992px) {
    .member-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-text {
        font-size: 56px;
        letter-spacing: 4px;
    }
}

@media (max-width: 600px) {
    nav ul {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }

    .member-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 50px 15px;
    }

    .hero p {
        font-size: 16px;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }

    .intro-text {
        font-size: 40px;
        text-align: center;
    }

    .events,
    .legal {
        padding: 40px 15px;
    }

    .event-box {
        padding: 18px;
    }
}

/* ========================================= */
/* 14. Vollbild-Intro für die Vorseite       */
/* ========================================= */

.intro-full {
    width: 100%;
    height: 100vh;
    background: url('img/smoke-overlay.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

