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


h1 {
    font-family: "DM Serif Display", serif;
    font-size: 48px;
    margin-bottom: 40px;
}

/* --- Grunddesign --- */

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







.page-title {
    grid-column: 1 / 3;
    text-align: center;
    margin: 40px 0 0;
    font-size: 70px;
}

/* Grundlayout bleibt */
body {
    margin: 0;
    background: #7c1f34;
    font-family: "Avenir", sans-serif;
}

/* Work Titel */
.title {
    text-align: center;
    font-size: 55px;
    margin-top: 40px;
    color: #f5c0cb;
    font-family: "Georgia", serif;
}



/* =========================
   GRUNDLAYOUT
   ========================= */

.about-wrapper {
    padding: 100px 60px 140px;
    color: #f1d1d8;
}

/* =========================
   TITEL
   ========================= */

.page-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
}

/* =========================
   OBERER BEREICH
   ========================= */

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
}

.about-title {
    font-size: 48px;
    font-weight: normal;
}

/* =========================
   TEXTBOXEN
   ========================= */

.about-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.text-box {
    background: #e4a6b4;
    color: #7c1f34;
    padding: 35px;
    border-radius: 18px;

    aspect-ratio: 3 / 4; /* Hochformat */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box h3 {
    margin-top: 0;
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 900px) {

    .about-wrapper {
        padding: 60px 20px 100px;
    }

    .page-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-boxes {
        grid-template-columns: 1fr;
    }

    .text-box {
        aspect-ratio: auto;
    }
}



/* =========================
   CV Layout
   ========================= */

.cv-wrapper {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 40px;
    color: #f1d1d8;
}

.cv-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
}

/* Einzelne Sektionen */
.cv-section {
    margin-bottom: 60px;
}

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

/* CV Einträge */
.cv-item {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.cv-year {
    min-width: 90px;
    font-family: "Avenir", sans-serif;
    font-size: 13px;
    opacity: 0.8;
}

.cv-item p {
    margin: 0;
    line-height: 1.6;
}

.cv-highlight {
    font-family: "Avenir", sans-serif;
}

/* Skills & Sprachen */
.cv-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.cv-box {
    background: #e49bab;
    color: #7c1f34;
    padding: 40px;
    border-radius: 18px;
}

.cv-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.cv-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-box li {
    margin-bottom: 10px;
    font-family: "Avenir", sans-serif;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 700px) {

    .cv-wrapper {
        padding: 0 25px;
        margin: 80px auto;
    }

    .cv-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .cv-item {
        flex-direction: column;
        gap: 8px;
    }

    .cv-year {
        min-width: auto;
        font-size: 12px;
    }

    .cv-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




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