:root {
    --bg-color: transparent;
    --text-color: #ffffff;
    --accent-color: #FF00FF;
    --nav-link-color: #e0e0e0;
    --button-bg: #ffffff;
    --button-text: #10122A;
    --button-hover-bg: #dddddd;
}

/* Grundlayout */
html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #10122A, #FF00FF);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background: transparent;
    text-align: justify;
    transition: color 0.4s ease;
}

/* MAIN drückt Footer nach unten */
main {
    flex: 1;
    padding-top: 80px; /* Abstand für die fixe Navbar */
}

/* HEADER & NAVBAR */
header {
    background: transparent;
    border: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 0 0 10px 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--nav-link-color);
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* LANGUAGE BUTTON */
.language {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.4s ease;
}

.language:focus {
    outline: none;
}

/* CONTENT */
.content {
    padding: 2.5rem 2rem;
    max-width: 800px;
    margin: auto;
}

.content h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffffff;
}

p {
    font-size: 1.5rem;
    max-width: 800px;
    color: #ffffff;
}

/* FOOTER */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    font-size: 1.2rem;
    color: var(--text-color);
    border-radius: 10px 10px 0 0;
}

.contact-buttons a {
    font-size: 2rem;
    color: var(--nav-link-color);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.contact-buttons a:hover {
    color: var(--accent-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .content h2 {
        font-size: 2.5rem;
    }

    body {
        font-size: 1.2rem;
    }
}
