/* impressum.css — Styles für Impressum */

/* Basisfonts übernehmen */
@import url('styles.css');

/* Haupt-Container */
.content {
    padding-top: 100px; /* Platz für Header */
    background: #f9f6f0;
}

/* --------------------------- */
/* Section 1: Kontaktdaten + Bild */
/* --------------------------- */
#kontakt-impressum {
    padding: 60px 20px 80px 20px;
    background: rgba(249,246,240,0.95);
}

.ueber-mich-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.ueber-mich-text {
    flex: 1;
    min-width: 280px;
}

.ueber-mich-text h1 {
    font-size: 4rem; /* H1 größer */
    margin-bottom: 20px;
    color: #4A7B7A;
}

.ueber-mich-text p {
    font-size: 1.4rem; /* Kontaktdaten größer */
    line-height: 1.8;
}

.portrait {
    flex: 0 0 400px;
}

.portrait img {
    width: 135%;
    height: auto;
    border-radius: 16px;
}

/* Welle unten */
.wave-bottom-impressum svg {
    display: block;
    width: 100%;
    height: 150px;
}

/* --------------------------- */
/* Section 2: Restliches Impressum */
/* --------------------------- */
.impressum-details-container {
    display: grid;
    grid-template-columns: 1fr 0.2fr 1fr; /* Linke Spalte, Lücke, rechte Spalte */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
    color: #3A3A3A;
    font-size: 1.1rem;
}

.impressum-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Leere mittlere Spalte */
.empty-col {
    display: block;
}

/* --------------------------- */
/* Responsive für Tablets & Smartphones */
/* --------------------------- */
@media (max-width: 900px) {
    .ueber-mich-container {
        flex-direction: column; /* Bild unter Text */
        align-items: center;
        text-align: center;
    }

    .ueber-mich-text h1 {
        font-size: 3rem;
    }

    .ueber-mich-text p {
        font-size: 1.3rem;
    }

    .portrait {
        flex: 1 1 auto;
        max-width: 300px;
    }

    .impressum-details-container {
        grid-template-columns: 1fr; /* Spalten untereinander */
        gap: 30px;
        text-align: left;
    }

    .impressum-col {
        width: 100%;
    }
}
