/* Reset und Box-Model */
[data-astro-cid-rm73rhiy] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS-Variablen */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #f8f8f8;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 2px 20px rgba(0, 0, 0, .1);
    --transition: all .3s ease;
}

/* Body Grundstil */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Header */
.header[data-astro-cid-rm73rhiy] {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: var(--secondary-color);
    padding: .4rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header[data-astro-cid-rm73rhiy] h1[data-astro-cid-rm73rhiy] {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.15;
}

.header[data-astro-cid-rm73rhiy] p[data-astro-cid-rm73rhiy] {
    font-size: .8rem;
    opacity: .9;
    max-width: 600px;
    margin: .15rem auto 0;
    padding: 0 1rem;
    line-height: 1.2;
}

/* Navigation */
.nav[data-astro-cid-rm73rhiy] {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    border-bottom: none;
    padding: .25rem 0;
    position: static;
    z-index: 100;
}

.nav-container[data-astro-cid-rm73rhiy] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 .75rem;
}

.nav-menu[data-astro-cid-rm73rhiy] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}

.nav-menu[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
    color: var(--secondary-color);
    text-decoration: none;
    padding: .25rem .6rem;
    border-radius: 9999px;
    transition: var(--transition);
    font-weight: 500;
    font-size: .9rem;
}

.nav-menu[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy]:hover,
.nav-menu[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy]:focus {
    background: #ffffff1f;
    color: var(--secondary-color);
}

/* Sections */
.section[data-astro-cid-rm73rhiy] {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.section[data-astro-cid-rm73rhiy]:nth-child(2n) {
    background: var(--accent-color);
}

.section[data-astro-cid-rm73rhiy] h2[data-astro-cid-rm73rhiy] {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.section[data-astro-cid-rm73rhiy] h3[data-astro-cid-rm73rhiy] {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

/* Content Cards */
.content-card[data-astro-cid-rm73rhiy] {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.content-card[data-astro-cid-rm73rhiy] p[data-astro-cid-rm73rhiy] {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-card[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.content-card[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy]:hover {
    border-bottom-color: var(--primary-color);
}

/* Styled Lists */
.styled-list[data-astro-cid-rm73rhiy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.styled-list[data-astro-cid-rm73rhiy] li[data-astro-cid-rm73rhiy] {
    background: var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px #0000001a;
    list-style: none;
    position: relative;
    padding: 1rem 1rem 1rem 2rem;
}

.styled-list[data-astro-cid-rm73rhiy] li[data-astro-cid-rm73rhiy]:before {
    content: "✓";
    position: absolute;
    left: .5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Contact Info */
.contact-info[data-astro-cid-rm73rhiy] {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.contact-info[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-info[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy]:hover {
    border-bottom-color: var(--secondary-color);
}

/* Testimonials */
.testimonial[data-astro-cid-rm73rhiy] {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.testimonial[data-astro-cid-rm73rhiy]:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: .3;
}

.testimonial[data-astro-cid-rm73rhiy] p[data-astro-cid-rm73rhiy] {
    font-style: italic;
    margin-bottom: 1rem;
}

/* Footer */
.footer[data-astro-cid-rm73rhiy] {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 6rem 0;
}

.footer[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 .5rem;
}

.footer[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy]:hover {
    text-decoration: underline;
}

/* Scroll to Top */
.scroll-to-top[data-astro-cid-rm73rhiy] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top[data-astro-cid-rm73rhiy].show {
    opacity: 1;
}

/* Floating Contact */
.floating-contact[data-astro-cid-rm73rhiy] {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    gap: 1rem;
}

.floating-contact[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
    color: var(--secondary-color);
    text-decoration: none;
    padding: .5rem;
    border-radius: 50%;
    background: #ffffff1a;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.floating-contact[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy]:hover {
    background: #fff3;
    transform: scale(1.1);
}

/* Animationen */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section[data-astro-cid-rm73rhiy] {
    animation: fadeInUp .6s ease-out;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablet Größe */
@media (max-width: 768px) {
    .header[data-astro-cid-rm73rhiy] {
        padding: .35rem 0;
    }

    .header[data-astro-cid-rm73rhiy] h1[data-astro-cid-rm73rhiy] {
        font-size: 1.15rem;
        line-height: 1.1;
        margin: 0;
    }

    .header[data-astro-cid-rm73rhiy] p[data-astro-cid-rm73rhiy] {
        font-size: .75rem;
        line-height: 1.2;
        margin: .1rem auto 0;
        padding: 0 .75rem;
    }

    .nav[data-astro-cid-rm73rhiy] {
        padding: .2rem 0;
    }

    .nav-container[data-astro-cid-rm73rhiy] {
        padding: 0 .5rem;
    }

    .nav-menu[data-astro-cid-rm73rhiy] {
        flex-direction: row;
        gap: .35rem;
    }

    .nav-menu[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
        padding: .18rem .44rem;
        font-size: .78rem;
        border-radius: 9999px;
    }

    .section[data-astro-cid-rm73rhiy] {
        padding: 2rem 0;
    }

    .section[data-astro-cid-rm73rhiy] h2[data-astro-cid-rm73rhiy] {
        font-size: 2rem;
    }

    .floating-contact[data-astro-cid-rm73rhiy] {
        flex-direction: column;
        bottom: 10px;
        left: 10px;
        gap: .5rem;
        padding: .5rem;
    }

    .floating-contact[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
        width: 35px;
        height: 35px;
        font-size: .9rem;
    }
}

/* Mobile Größe - MIT KORREKTUR */
@media (max-width: 480px) {
    /* KORRIGIERT: Nur ersten Absatz verstecken, Sprachumschalter bleibt sichtbar */
    .header[data-astro-cid-rm73rhiy] p[data-astro-cid-rm73rhiy]:first-of-type {
        display: none;
    }

    .nav-menu[data-astro-cid-rm73rhiy] {
        gap: .28rem;
    }

    .nav-menu[data-astro-cid-rm73rhiy] a[data-astro-cid-rm73rhiy] {
        font-size: .72rem;
        padding: .16rem .4rem;
    }
}