﻿/* ====================================
   content-pages.css - Spezifische Styles für Inhaltsseiten (Über uns, Kontakt, etc.)
   ==================================== */

/* Allgemeine Layout-Anpassungen */
body {
    background-color: #F8F8F8; /* Leicht cremiger Hintergrund */
    color: #333; /* Dunkelgrauer Text */
    font-family: 'Poppins', sans-serif; /* Standard-Schrift für Fließtext */
}

/* Container für zentrierten Inhalt mit fester Breite */
.content-section {
    max-width: 900px; /* Breite des Inhaltsbereichs, etwas breiter für mehr Lesefluss */
    margin: 0 auto; /* Zentrierung */
    padding: 60px 20px; /* Standardabstand oben/unten und seitlich */
    position: relative; /* Für z-index Kontexte */
    z-index: 2; /* Damit Text über Overlays liegt */
}

/* --- Navigation Anpassung für aktive Seite --- */
.nav-links li a.active {
    font-weight: 600;
    color: #9d8076;
    position: relative;
}

.nav-links li a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #9d8076;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* --- Hero-Sektion --- */
.about-hero-section {
    position: relative;
    background: url('images/Thatys_Arbeit.png') no-repeat center center; /* Ihr Hero-Bild */
    background-size: cover;
    background-attachment: fixed; /* Optional: Parallax-Effekt */
    min-height: 450px; /* Mindesthöhe für den Hero-Bereich */
    display: flex; /* Zentriert den Inhalt vertikal */
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    overflow: hidden;
    margin-bottom: 0; /* Kein Margin, da der Button-Container kommt */
    padding: 100px 20px 140px 20px; /* Anpassung für den Button-Abstand */
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Weisses Overlay mit 70% Transparenz */
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2; /* Text über dem Overlay */
    max-width: 800px;
    padding: 20px;
}

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #5a4b41;
}

.about-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Einleitungsabschnitt (Text ohne Bild) --- */
.about-intro-section {
    padding-top: 80px; /* Extra Abstand nach dem Top-Button */
    padding-bottom: 80px;
}

.about-intro {
    font-size: 1.25em;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* --- Kapitel-Sektionen mit Hintergrundbildern und Text --- */
.about-chapter {
    position: relative;
    overflow: hidden;
    padding: 100px 0; /* Grosszügige vertikale Polsterung für jede Sektion */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* Optional: Parallax-Effekt */
    margin-bottom: 60px; /* Abstand zwischen den Sektionen */
}

.about-chapter:last-of-type {
    margin-bottom: 0; /* Kein Margin beim letzten Kapitel vor dem CTA */
}

/* Overlay für die Kapitel-Hintergrundbilder */
.chapter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Weisses Overlay mit 70% Transparenz */
    z-index: 1;
}

/* Spezifische Hintergrundbilder für die Kapitel */
.chapter-thaty-working {
    background-image: url('images/thaty_working.png'); /* Ihr Bild 1 */
}

.chapter-atelier {
    background-image: url('images/thaty_atelie.png'); /* Ihr Bild 2 */
}

/* Inhalt innerhalb der Kapitel-Sektionen */
.about-chapter .content-section {
    padding-top: 0; /* Abstand wird von .about-chapter kontrolliert */
    padding-bottom: 0; /* Abstand wird von .about-chapter kontrolliert */
    text-align: center; /* Zentriert den gesamten Textblock im Kapitel */
    position: relative; /* Für z-index */
    z-index: 2; /* Text über dem Overlay */
}

.chapter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8em;
    font-weight: 600;
    color: #5a4b41;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.chapter-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: #9d8076;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-chapter .content-section p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    max-width: 750px; /* Begrenzt die Breite des Paragraphen für bessere Lesbarkeit */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Zentriert den Text innerhalb der Absätze */
}

.image-caption {
    font-size: 0.95em;
    color: #666; /* Etwas dunkler für bessere Lesbarkeit */
    margin-top: 30px; /* Deutlicherer Abstand zum Text */
    padding: 0 15px;
    font-style: italic;
    max-width: 600px; /* Begrenzt die Breite der Bildunterschrift */
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Bereich am Ende */
.about-call-to-action {
    background-color: #f0edea;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    max-width: 900px; /* Gleiche Breite wie .content-section */
    margin-left: auto;
    margin-right: auto;
}

.about-call-to-action .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2em;
    color: #5a4b41;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-call-to-action p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.about-call-to-action .cta-link {
    display: inline-block;
    background-color: #9d8076;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.about-call-to-action .cta-link:hover {
    background-color: #7e675f;
}

/* --- "Zurück zum Shop" Buttons --- */
.shop-back-button-container {
    text-align: center;
    padding: 0 20px;
}

.shop-back-button-container.top-button {
    margin-top: 0; /* Wichtig: Negativen Margin entfernen */
    margin-bottom: 60px; /* Behält den Abstand zum Intro-Text */
}
.shop-back-button-container.bottom-button {
    margin-top: 80px;
    margin-bottom: 80px;
}

.shop-back-button {
    display: inline-block;
    background-color: #9d8076;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.shop-back-button:hover {
    background-color: #7e675f;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 350px;
        padding: 80px 20px 100px 20px; /* Angepasstes Padding für mobile Hero-Section */
    }
    .about-hero-title {
        font-size: 2.5em;
    }
    .about-hero-subtitle {
        font-size: 1.1em;
    }
    .content-section {
        padding: 40px 15px;
    }
    .about-intro-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .about-intro {
        font-size: 1.1em;
    }
    .about-chapter {
        padding: 80px 0;
    }
    .chapter-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .about-chapter .content-section p {
        font-size: 1em;
    }
    .image-caption {
        font-size: 0.9em;
        margin-top: 20px;
    }
    .about-call-to-action {
        padding: 40px 20px;
    }
    .about-call-to-action .cta-title {
        font-size: 1.8em;
    }
    .about-call-to-action p {
        font-size: 1em;
    }
    .shop-back-button-container.top-button {
        margin-bottom: 40px;
    }
    .shop-back-button-container.bottom-button {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        min-height: 300px;
        padding: 60px 15px 80px 15px; /* Angepasstes Padding für sehr kleine Bildschirme */
    }
    .about-hero-title {
        font-size: 2em;
    }
    .about-hero-subtitle {
        font-size: 0.95em;
    }
    .chapter-title {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
    .about-chapter {
        padding: 60px 0;
    }
    .shop-back-button-container.top-button {
        margin-bottom: 30px;
    }
    .shop-back-button-container.bottom-button {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}