/* css/ueber-mich.css */

/* 1. Intro-Sektion */
.intro-section {
    background-color: var(--secondary-color); /* Warmer Hintergrund */
}
.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.intro-image-container {
    flex: 0 0 300px; /* Feste Breite für das Bild */
    max-width: 35%;
}
.intro-image-container img {
    width: 100%;
    border-radius: 50%; /* Rundes Bild für persönliche Note */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.intro-text-container {
    flex: 1;
}
.intro-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.intro-philosophy {
    font-size: 1.1em;
    font-style: italic;
    color: var(--primary-color);
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 1.5em;
}

/* 2. Praxis-Sektion*/
.practice-section {
    background-color: var(--highlight-background-color);
}
.practice-intro {
    max-width: 700px;
    margin: 0 auto 40px auto; /* Etwas mehr Abstand nach unten */
}
.practice-images-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Abstand zwischen den Bildern */
    align-items: center; /* Vertikale Ausrichtung, falls die Bilder unterschiedlich hoch sind */
}
.praxis-image-main,
.praxis-image-art {
    width: 100%;           /* Erlaubt den Containern, die volle Breite einzunehmen */
    max-width: 750px;      /* BEGRENZT die maximale Breite der Bilder für eine bessere Optik auf großen Bildschirmen */
                           /* Du kannst diesen Wert anpassen (z.B. auf 800px oder 700px) */
}

/* Gemeinsame Stile für alle Bilder und die Figure */
.praxis-image-main img,
.praxis-image-art figure {
    margin: 0; /* Reset für figure */
    width: 100%;
    display: block;
}
.praxis-image-main img,
.praxis-image-art img {
    width: 100%;
    height: auto; /* WICHTIG: Erhält das Seitenverhältnis */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Styling für die Copyright-Angabe */
.praxis-image-art figcaption {
    margin-top: 10px;
    text-align: right;
    font-size: 0.8em;
    color: #777;
    font-style: italic;
}

/* 3. Vita-Sektion (Timeline) */
.content-column-narrow { /* Schmalere Spalte für bessere Lesbarkeit der Vita */
    max-width: 750px;
    margin: 0 auto;
}
.timeline {
    position: relative;
    margin-top: 30px;
    padding: 20px 0;
}
.timeline::before { /* Die zentrale Linie der Timeline */
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--border-color);
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px; /* Platz für Icon und Linie */
}
.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    border: 3px solid var(--secondary-color); /* Oder highlight-background-color */
}
.timeline-content h3 {
    margin-bottom: 5px;
}
.timeline-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

/* 4. Themen-Sektion */
.topics-section {
    background-color: var(--highlight-background-color);
}
.topics-grid {
    display: flex;
    gap: 40px;
}
.topic-column {
    flex: 1;
    background-color: #fff; /* Karten-Effekt */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.topics-list {
    list-style: none;
    padding-left: 0;
}
.topics-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}
.topics-list li::before {
    content: '\f054'; /* Font Awesome Chevron-Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
    font-size: 0.8em;
}

/* 5. Orga-Sektion */
.orga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.orga-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.orga-item h3 {
    margin-bottom: 10px;
}

/* 6. Untere CTA (erbt von .cta-section-bottom aus angebot-template.css, oder hier definieren) */
.cta-section-bottom {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.cta-section-bottom h2 { color: var(--light-text-color); }
/* ... (weitere Styles, falls nötig) */

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    .intro-image-container {
        max-width: 200px;
        margin-bottom: 20px;
    }
    .intro-title { font-size: 2em; }
    .intro-philosophy {
        border-left: none;
        border-top: 3px solid var(--accent-color);
        padding-left: 0;
        padding-top: 15px;
        text-align: left;
    }
    .timeline::before { left: 50%; transform: translateX(-50%); }
    .timeline-item { padding-left: 0; text-align: center; }
    .timeline-icon { left: 50%; transform: translateX(-50%); }
    .topics-grid { flex-direction: column; }
}

@media (max-width: 576px) {
    .timeline-content { padding: 50px 0 0 0; }
}