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



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;
    }
}








.about {
    padding: 4rem 2rem;
}

.about-image {
    max-width: 900px;
    margin: auto;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    max-width: 700px;
    margin: auto;
}

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

.about-text p {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

.instagram-inline {
    color: #2C6183;
    font-weight: 400;
    transition: 0.3s ease;
}

.instagram-inline:hover {
    color: #001C2E;
}








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

.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 ─────────────────────────────────────── */

@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;
    }

    .about {
        padding: 3rem 1.5rem;
    }

    .about-text h1 {
        font-size: 2.2rem;
    }

    .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%;
}
