/* ================= GLOBAL ================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #eaeaea;

    display: flex;
    flex-direction: column;
    min-height: 100vh;

    overflow-x: hidden;
}


/* ================= BACKGROUND ================= */

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;

    background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)),
    url('new_bg.png') center/cover no-repeat;

    z-index: -1;

    filter: grayscale(20%) contrast(105%) brightness(100%);
}


/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
}

/* FLOATING LOOK */
.nav-container {
    max-width: 1200px;
    margin: 8px auto 20px auto;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    height: 60px;
    opacity: 0.95;
    filter: brightness(1.1);
}
.nav-logo { position: relative; height: 50px; /* Höhe der Navbar bleibt klein */ } /* LOGO */ .nav-logo img { position: absolute; top: 50%; transform: translateY(-50%); height: 170px; /* 🔥 gewünschte Größe */ }

/* LINKS (DESKTOP) */
.nav-links {
    display: flex;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* HAMBURGER (DESKTOP AUS!) */
.nav-toggle {
    display: none;
}

.logo-impressum {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ================= HERO ================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    max-width: 1200px;
    margin: auto;
    padding: 90px 20px 60px;

    flex: 1;
}

.hero-left,
.hero-right {
    flex: 1;
}

/* ================= Links ================= */
a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;

    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

a:hover {
    border-bottom: 1px solid rgba(255,255,255,0.8);
}

.flyer-link {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.flyer-link:hover {
    border-bottom: 1px solid #fff;
}

/* ================= LOGO (CONTENT) ================= */

.logo {
    width: 500px;
    margin-bottom: 20px;
    opacity: 0.95;
}


/* ================= TYPO ================= */

h1 {
    font-weight: 400;
    margin-bottom: 15px;
}

h2 {
    font-weight: 400;
    margin-bottom: 15px;
}

p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro {
    max-width: 600px;
    margin-bottom: 30px;
    color: #bbb;
}


/* ================= EVENT ================= */

.event-highlight {
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
}


/* ================= LEGAL ================= */

.legal-text {
    text-align: left;
    max-width: 700px;
}

.legal-text h1 {
    margin-top: 60px;
}

.legal-text h2 {
    margin-top: 40px;
    font-size: 18px;
}

.legal-text p {
    font-size: 14px;
}


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

.footer {
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 40px auto 20px auto;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: rgba(255,255,255,0.5);
    font-size: 13px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social {
    margin-top: 10px;
}

.social a {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.6;
    transition: 0.3s;
}

/* ICON SIZE */
.social svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* HOVER EFFECT */
.social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.social a:hover svg {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
}

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

@media (max-width: 900px) {

    /* NAVBAR */
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-logo img {
        height: 75px;
    }

    /* HAMBURGER EIN */
    .nav-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: white;
    }

    /* DESKTOP LINKS AUS */
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* MENU AUFKLAPPEN */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        font-size: 16px;
    }
 .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* HERO */
    .hero {
        flex-direction: column;
margin-top: 100px;   /* Abstand zur Navbar */
        padding: 100px 20px 40px;
        gap: 30px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    /* TEXT */
    .legal-text {
        max-width: 100%;
    }

    /* EVENT */
    .event-highlight {
        padding: 20px;
    }
    .social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .social a {
        opacity: 1;   /* 🔥 wichtig */
    }

    .social svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

}
}