*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a {
    text-decoration: none;
    cursor: pointer;
}

nav {
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
}

ul {
    list-style: none;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3rem;
    margin-right: 5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 2.5rem;
    margin-left: 5rem;
    cursor: pointer;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-right: 5rem;
}

.burger span {
    width: 30px;
    height: 2px;
    background-color: #001C2E;
    transition: all 0.3s ease;
}

.verlinkungen {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #001C2E;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.verlinkungen:hover {
    cursor: pointer;
    color: #2c62834e;
}

/* ── Language Switcher ──────────────────────────────── */

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #001C2E;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.lang-btn.active {
    color: #2C6183;
}

.lang-btn:hover {
    color: #2C6183;
}

.lang-divider {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #001C2E;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-top: 1rem;
        justify-content: center;
        gap: 1rem;
    }
}







#contact {
    padding: 120px 20px;
    background: white;
}

.contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

#contact h1 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 300;
    font-size: 2.64rem;
    color: #001C2E;
    text-align: center;
    margin-bottom: 20px;
}

.contact-text {
    text-align: center;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 300;
    color: #666;
    font-size: 0.97rem;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select,
textarea {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 0.79rem;
    font-family: "Roboto Flex", sans-serif;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 4 6 8 10 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    margin-top: 10px;
    padding: 14px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.79rem;
    letter-spacing: 1px;
}

button:hover {
    background: #333;
}

.contact-info {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
}

.contact-info a {
    color: #001C2E;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2C6183;
}







.footer {
    padding: 2rem 5rem;
    border-top: 1px solid #e5e5e5;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-family: "Roboto Flex", sans-serif;
    font-size: 0.79rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: "Roboto Flex", sans-serif;
    font-size: 0.79rem;
    color: #001C2E;
}

.instagram-link {
    font-weight: 400;
}

.instagram-link:hover {
    color: #2C6183;
}

/* ── Responsive Design ─────────────────────────────────────── */

.form-status {
    margin-top: 1rem;
    font-size: 0.79rem;
    font-family: "Roboto Flex", sans-serif;
    text-align: center;
    min-height: 1.2rem;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: #d32f2f;
}

@media (max-width: 1024px) {
    ul {
        gap: 2rem;
        margin-right: 2rem;
    }

    .logo {
        margin-left: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        height: 5rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    #nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        margin-right: 0;
        transition: 0.5s ease;
        z-index: 1000;
    }

    #nav-links.active {
        right: 0;
    }

    .logo {
        margin-left: 1.5rem;
        height: 1.8rem;
    }

    .burger {
        margin-right: 1.5rem;
    }

    #contact {
        padding: 4rem 1.5rem;
    }

    #contact h1 {
        font-size: 2.2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* -- GLOBALS -- */
html, body {
    overflow-x: hidden;
}
img {
    max-width: 100%;
}
