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

/* 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;
    text-decoration: none;
    color: inherit;
}
.logo {
    font-size: 22px;
    font-weight: bold;
      text-decoration: none;    /* entfernt Unterstreichung */
    color: inherit; 
}
.logo a:visited {
    color: inherit;           /* verhindert lila visited-Farbe */
}

.logo a:hover,
.logo a:active {
    text-decoration: none;    /* verhindert Unterstreichung beim Hover */
    color: inherit;           /* keine Farbänderung */
}

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

/* Hero Section */
/* --- Hero Grid Layout --- */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* linke & rechte Spalte */
    grid-template-rows: auto auto auto;
    gap: 40px 60px; /* vertikal / horizontal */
    padding: 100px 60px;
    align-items: center;
}


/* Bilder */
.hero-grid img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

/* Linkes oberes Bild */
.hero-left-top {
    grid-column: 1;
    grid-row: 1 / 3; /* über zwei Zeilen */
}

/* Linkes unteres Bild */
.hero-left-bottom {
    grid-column: 1;
    grid-row: 3;
}

/* Rechtes großes Bild */
.hero-right {
    grid-column: 2;
    grid-row: 2 / 4; /* hoher Bereich */
}

/* Titel */
.hero-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 70px;
    margin: 0 0 16px; /* Abstand NACH unten */
    text-align: center;
}

.hero-text {
    grid-column: 2;
    grid-row: 2;              /* WICHTIG: direkt unter dem Titel */
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    font-family: "Avenir", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #f1d1d8;
}


/* =========================
   Index – Mobile Feinschliff
   ========================= */

@media (max-width: 700px) {

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 40px 20px 60px;
        gap: 30px;
    }

    /* Reihenfolge für Mobile */
    .hero-center {
        grid-column: 1;
        grid-row: 1;
    }

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

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

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

    /* Titel & Text */
    .hero-title {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 5px;
    }

    /* Bilder */
    .hero-grid img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
}




/* 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 */
}

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