/* --- Über-mich Sections (1 & 2) --- */
/* Section-2: Klon des Heros ohne Animationen/Effekte, Bild links / Text rechts */

.section2 {
    display: flex;
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-base);
    /* NEU: gleicher Hintergrund-Verlauf wie .about-and-marquee / Section-1 */
    background: linear-gradient(180deg,
            var(--color-gradient-start, #000000) 0%,
            var(--color-gradient-end, #333333) 100%);
}

/* Linke Seite – Bild wie im Hero */
.section2-left {
    width: 50vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../Pictures/Foootball1.png');
    /* identisch zum Hero */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Rechte Seite – langer Text */
.section2-right {
    width: 50vw;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    /* Box hinter dem Text entfernen: kein eigener Hintergrund mehr */
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Textblock rechts */
.section2-right-overlay-text {
    color: #ffffff;
    padding: 2rem 2rem 1.5rem;
    max-width: 52rem;
    width: 100%;
    margin: 0 auto;
    font-size: clamp(0.85rem, 1vw, 1rem);
    line-height: 1.6;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    /* Box hinter dem Text entfernen */
    background: none;
}

/* Scrollbereich */
.section2-scrollable-body p {
    margin: 0 0 0.9rem 0;
}

/* Überschrift */
.section2-right-overlay-text h2 {
    margin: 0 0 1rem 0;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

/* Motto */
.section2-right-overlay-motto {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
    .section2 {
        flex-direction: column;
        min-height: auto;
    }

    .section2-left,
    .section2-right {
        width: 100vw;
        min-height: 50vh;
    }

    .section2-right-overlay-text {
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 100%;
        margin: 0;
        max-height: none;
        overflow-y: visible;
        padding: 1.5rem 1.25rem;
        /* auch auf Mobile keine zusätzliche Box */
        background: none;
    }
}