@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Pacifico&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    width: 100%;
    overflow: hidden;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

.container {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    scale: 1;
    z-index: -1;
    object-fit: cover
}

nav {
    position: relative;
    top: 0;
    padding: 20px 40px;
    height: 128px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

nav.sticky {
    background-color: rgba(11, 9, 12, 0.8);
}

nav h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 15px;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 25px;
    left: 6.5%;
}

.nav-logo {
    position: relative;
    left: 6.5%;
    top: 32px;
}

.logo img {
    height: 50px; 
}


nav h1 span {
    color: #DE48FA;
    transition: all 0.3s ease-in-out;
}

nav .nav-center {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

nav .links {
    display: flex;
    gap: 50px;
}

nav .links a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

nav .links a:hover {
    color: white;
}

nav .links a.active {
    color: #DE48FA;
}

nav .links a.active:hover {
    color: white;
}

nav .social-links {
    display: flex;
    align-items: center;
}

nav .social-links a {
    font-size: 16px;
    color: #717171;
    transition: color 0.3s ease-in-out;
}

nav .social-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-count {
    color: #7289da;
    font-weight: 700;
    font-size: 14px;
    margin-left: 4px;
    text-shadow: 0 0 5px rgba(114, 137, 218, 0.3);
    position: relative;
    top: -1px;
}

nav .legal-links {
    position: absolute;
    top: 60px;
    right: 200px;
    display: flex;
    gap: 30px;
}

nav .legal-links a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

nav .legal-links a:hover {
    color: white;
}

.slogan {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    word-spacing: 0px;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 15px;
    position: relative;
    top: 55px;
}

.main-3 {
    margin-top: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.impressum {
    text-align: left;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.7;
}

.impressum-box {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    margin-top:  80px;
    border-radius: 20px;
    width: 1000px;
    color: #fff;
    text-align: left;
    line-height: 1.7;
}

.impressum-box a {
    color: #DE48FA;
    text-decoration: none;
}

.impressum-box a:hover {
    text-decoration: underline;
}

.impressum-box h3 {
    margin-top: 30px;
    font-size: 20px;
    color: #DE48FA;
    text-transform: uppercase;
}



.impressum h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
}


.impressum a {
    color: #DE48FA;
    text-decoration: none;
}

.impressum a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        height: auto;
    }

    .logo {
        flex-direction: row;
        top: 20px;
        left: 0;
        justify-content: center;
    }

    .nav-center {
        flex-direction: row;
        gap: 15px;
        position: static;
        margin-top: 40px;
        width: 100%;
        margin-left: 50px;
    }

    nav .links {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    nav .social-links {
        justify-content: center;
    }

    .discord-count {
        display: none;
    }

    .slogan {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 40px;
    }

    html, body {
        overflow-x: hidden;
        width: 100vw;
    }

    nav .legal-links {
        display: none;
    }

    .impressum {
        padding: 40px 20px;
        margin-top: 50px;
        text-align: left;
    }
    
    .impressum-box {
        width: 100%;
        padding: 20px;
        margin-top: 40px;
        border-radius: 15px;
        font-size: 14px;
        line-height: 1.6;
    }
}

