/* Gemeinsame Basis- und Header-Styles */
@import url("style.css");

/* =============================================
   Über-mich-Seite
   ============================================= */
.ueber-mich-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.page-intro {
    text-align: center;
    padding: 3rem 0 1rem;
}

.page-intro h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Einblend-Animation für Überschrift */
.page-hero {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s ease-out forwards;
}

/* =============================================
   Intro-Bereich mit Foto
   ============================================= */
.about-intro {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: stretch;
}

.about-text-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.about-text-card h2 {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.about-text-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-text-card p:last-child {
    margin-bottom: 0;
}

.about-photo-placeholder {
    min-height: 400px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
    border: 2px dashed rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* =============================================
   Weitere Inhalte
   ============================================= */
.about-content {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.875rem;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 900px) {
    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-photo-placeholder {
        min-height: 300px;
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ueber-mich-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-intro {
        padding: 2.5rem 0 0.5rem;
    }

    .about-intro {
        gap: 1.5rem;
    }

    .about-text-card {
        padding: 2rem 1.5rem;
    }

    .about-photo-placeholder {
        min-height: 260px;
    }
}
