body {
    margin: 0;
    background: #7c1f34;
    color: #f1d1d8;
    font-family: serif;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.logo {
    font-family: "Avenir", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

.nav nav a {
    font-family: "Avenir", sans-serif;
    margin-left: 25px;
    padding: 8px 22px;
    background: #e49bab;
    color: #7c1f34;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* =========================
   MOBILE HEADER (GLOBAL)
   ========================= */

@media (max-width: 700px) {

    .nav {
        flex-direction: column;
        align-items: center;
        padding: 24px 20px 30px;
        gap: 18px;
    }

    .logo {
        font-size: 26px;
        text-align: center;
    }

    .nav nav {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav nav a {
        margin: 0;
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 999px;
    }
}


/* Datenschutz */
.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 30px 100px;
}

.legal-wrapper h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(34px, 6vw, 54px);
    margin-bottom: 60px;
    text-align: center;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-family: "Avenir", sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.legal-section p {
    font-family: "Avenir", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    max-width: 620px;
}

/* Lower Footer */
.footer-lower {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid #7c1f34;
}

.footer-lower a {
    color: #7c1f34;
    text-decoration: none;
    font-size: 14px;
}

/* Gesamter Footer in Avenir */
.footer,
.footer a,
.footer h4 {
    font-family: "Avenir", sans-serif;
}

/* Ausnahme: Der Name "Nina Keusch" bleibt in der Standardschrift */
.footer-name {
    font-family: serif; /* oder die Schrift, die du willst */
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
        grid-column: 1;
        grid-row: 1;
    }

    .hero-left-top {
        grid-row: 2;
    }

    .hero-right {
        grid-row: 3;
    }

    .hero-left-bottom {
        grid-row: 4;
    }
}

/* Footer */
.footer {
    background: #d9a1b0;
    color: #7c1f34;
    padding-top: 50px;
    margin-top: 200px;
}

.footer-upper {
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

.footer-name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 60px;
}

.footer-columns {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    margin-bottom: 8px;
    font-weight: bold;
}

.footer-col a {
    display: block;
    margin-bottom: 4px;
    color: #7c1f34;
    text-decoration: none;
    font-size: 14px;
}

/* Lower Footer */
.footer-lower {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid #7c1f34;
}

.footer-lower a {
    color: #7c1f34;
    text-decoration: none;
    font-size: 14px;
}

/* Gesamter Footer in Avenir */
.footer,
.footer a,
.footer h4 {
    font-family: "Avenir", sans-serif;
}

/* Ausnahme: Der Name "Nina Keusch" bleibt in der Standardschrift */
.footer-name {
    font-family: serif; /* oder die Schrift, die du willst */
}

/* =========================
   Footer – leicht responsiv
   ========================= */

@media (max-width: 800px) {

    .footer {
        margin-top: 120px;
    }

    .footer-upper {
        padding: 40px 30px;
        gap: 40px;
    }

    .footer-columns {
        gap: 50px;
    }

    .footer-name {
        margin-top: 20px;
        font-size: 18px;
    }

    .footer-lower {
        gap: 40px;
        padding: 20px 0;
    }
}

@media (max-width: 500px) {

    .footer-upper {
        flex-direction: column;
        align-items: flex-start; /* bewusst NICHT center */
        padding: 30px 25px;
        gap: 30px;
    }

    .footer-columns {
        gap: 35px;
    }

    .footer-col h4 {
        font-size: 13px;
    }

    .footer-col a {
        font-size: 14px;
    }

    .footer-lower {
        flex-direction: row; /* bleibt horizontal wie Header */
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 25px;
        padding: 20px 25px;
        font-size: 13px;
    }
}
