/*
Theme Name: Seelenlicht
Author: Peggy Starick
Description: Das individuelle Theme für meine spirituelle Beratung.
Version: 1.2 (Fehlerfrei & Perfektioniert)
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: hsl(57, 100%, 91%);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: #3b505c;
    font-weight: 300;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo img {
    width: 100%; /* NEU: Das Logo passt sich auf kleinen Bildschirmen flexibel an */
    max-width: 700px; /* Bleibt auf dem PC maximal 700px groß */
    height: auto;
    margin-bottom: 10px;
    mix-blend-mode: multiply;
}

.slogan {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3b505c;
    font-style: normal;
    margin-top: 10px;
}

.main-navigation {
    margin-top: 25px;
    width: 100%; /* Zwingt das Menü auf die volle Bildschirmbreite */
    display: flex;
    justify-content: center; /* Setzt den Inhalt exakt in die Mitte */
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    padding: 0 !important; /* Der !important Hammer löscht jeden unsichtbaren Rand */
    margin: 0 !important;
    width: 100%;
}

.main-navigation li {
    padding: 0 !important;
    margin: 0 !important;
}

.main-navigation a {
    text-decoration: none;
    color: #3b505c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #7a7a7a;
}

.main-navigation .nav-btn {
    background-color: #C19A6B;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.main-navigation .nav-btn:hover {
    background-color: #A88154;
}

/* ==========================================================================
   INTRO-BEREICH
   ========================================================================== */
.intro-section {
    text-align: center;
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.intro-section h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #e0a048;
    margin-bottom: 50px;
}

.questions p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ==========================================================================
   ÜBER MICH & ANGEBOTE
   ========================================================================== */
.about-section {
    background-color: #F4EBE1; 
    color: #3b505c; 
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    border-radius: 12px;
    border: 1px solid #E8D8C8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.about-section h2 {
    font-size: 2rem;
    color: #e0a048;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 20px;
}

.services-section, .feedback-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.services-intro, .feedback-intro {
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #e0a048;
}

.feedback-intro {
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
}

/* HIER IST DER FIX FÜR BILD 2: Die weißen Karten sind wieder da! */
.service-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* NEU: Flexbox sorgt für die exakte Ausrichtung im Inneren */
    display: flex;
    flex-direction: column; 
}

.about-short-section {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    text-align: left;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #4a4a4a;
    
    /* NEU: Der Text nimmt den restlichen Platz ein und drückt 
       die Quick-Facts und den Button immer exakt nach ganz unten! */
    flex-grow: 1; 
}
/* ==========================================================================
   FEEDBACK-BEREICH (PREMIUM "LETTER" DESIGN)
   ========================================================================== */
.feedback-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.feedback-card {
    position: relative;
    background-color: #ffffff;
    padding: 60px 70px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

/* HIER IST DER FIX FÜR BILD 3: Zartes, nicht störendes Wasserzeichen */
.feedback-card::before {
    content: "“";
    font-family: Georgia, serif;
    font-size: 220px;
    color: rgba(193, 154, 107, 0.08); /* Sehr helles, zartes Kupfer-Gold */
    position: absolute;
    top: -40px;
    left: 15px;
    line-height: 1;
    z-index: 0;
}

.feedback-card p {
    position: relative;
    z-index: 1;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555555;
    font-style: normal;
}

.feedback-card span {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    text-align: right;
    color: #C19A6B;
    font-size: 1rem;
    font-style: italic;
}

/* ==========================================================================
   QUICK FACTS & BUTTONS
   ========================================================================== */
.quick-facts {
    list-style: none;
    padding: 15px 0;
    margin: 25px 0 15px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-facts li {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more-btn {
    background: none;
    border: none;
    color: #3b505c;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    text-decoration: none; 
}

.read-more-btn:hover {
    color: #7a7a7a;
    text-decoration: underline;
}

/* ==========================================================================
   KONTAKTFORMULAR
   ========================================================================== */
.contact-section {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
}

.contact-intro {
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #3b505c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b505c;
    outline: none;
}

textarea {
    resize: none;
    overflow: hidden;
    min-height: 100px;
    box-sizing: border-box;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: #C19A6B; 
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #A88154;
}

/* ==========================================================================
   UNTERSEITEN (DATENSCHUTZ, IMPRESSUM, AGB)
   ========================================================================== */
.page-main {
    padding: 60px 20px;
}

.beautiful-content-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.beautiful-content-box h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #3b505c;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
}

.beautiful-content-box h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #e0a048;
}

.beautiful-content-box h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #3b505c;
}

.page-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.page-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.back-link-container {
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.back-btn {
    display: inline-block;
    color: #3b505c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-btn:hover {
    color: #7a7a7a;
    transform: translateX(-5px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C19A6B;
    text-decoration: underline;
}
/* ==========================================================================
   BILDER IN DEN KARTEN (NEU)
   ========================================================================== */

/* Bilder in den Service-Karten (Aura & Jenseits) */
.service-image {
    width: 100%;
    
    /* NEU: Anstatt einer harten Höhe nutzen wir ein festes Seitenverhältnis.
       4 / 3 ist ein klassisches Foto-Hochformat. Beide Bilder werden 
       dadurch exakt gleich hoch und nichts Wichtiges wird mehr weggeschnitten! */
    height: auto; 
    aspect-ratio: 4 / 3; 
    
    object-fit: cover; 
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Das neue Layout für die Über-mich-Kurzversion */
.about-short-section {
    display: flex; /* Setzt Bild und Text nebeneinander */
    align-items: center; /* Zentriert beides auf gleicher Höhe */
    gap: 40px; /* Schöner Abstand zwischen Bild und Text */
    text-align: left; /* Text sieht nebeneinander linksbündig besser aus */
}

/* Das Portrait-Bild auf der Bank */
.about-short-image {
    width: 40%; /* Bild nimmt 40% des Platzes ein */
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06); /* Edler Schatten */
    object-fit: cover;
}

/* Der Textbereich neben dem Bild */
.about-short-content {
    flex: 1; /* Nimmt den restlichen Platz ein */
}

/* Den Weiterlesen-Button im Über-Mich Bereich wieder linksbündig ausrichten */
.about-short-section .read-more-btn {
    margin-top: 15px;
}

/* ==========================================================================
   MOBILE OPTIMIERUNG (SMARTPHONES)
   ========================================================================== */
@media (max-width: 800px) {
    .services-grid, 
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
    }
    
    h1, .intro-section h1, .beautiful-content-box h1 {
        font-size: 1.8rem;
    }

    .slogan {
        font-size: 1.2rem; /* Etwas kleiner auf dem Handy, damit es in eine Zeile passt */
        padding: 0 10px;
    }
    
    .beautiful-content-box {
        padding: 30px 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .quick-facts {
        flex-direction: column;
        gap: 10px;
    }
    
    .feedback-card {
        padding: 40px 30px;
    }
    
    .feedback-card::before {
        font-size: 150px;
        top: -20px;
        left: 10px;
    }

    /* Bild und Text auf dem Handy untereinander setzen */
    .about-short-section {
        flex-direction: column;
        text-align: center;
    }
    
    .about-short-image {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Universelles Design für inhaltliche Bilder */
.premium-bild {
    width: 100%; /* Passt sich automatisch der Breite an */
    max-height: 250px; /* Macht die Bilder nicht zu riesig */
    object-fit: cover; /* Verhindert, dass das Bild gequetscht wird */
    border-radius: 12px; /* Gleiche weiche Ecken wie deine Karten! */
    box-shadow: 0 8px 25px rgba(0,0,0,0.05); /* Zarter, schwebender Schatten */
    margin-bottom: 20px; /* Abstand zum Text darunter */
}
.form-success-message {
    background-color: #F4EBE1;
    color: #3b505c;
    border: 1px solid #C19A6B;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}