/* --- BASIS & SCHRIFTEN --- */
@font-face { font-family: 'Inter'; src: url('fonts/inter-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-display-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }

:root {
    --sage: #8BA889;
    --sand: #F5F5DC;
    --stone: #2D2D2D;
    --linen: #FAF9F6;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--stone);
    background-color: var(--linen);
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100-vh;
}

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { 
    text-decoration: none; 
    color: var(--stone); 
    text-transform: uppercase; 
    font-size: 13px; 
    font-weight: bold;
    letter-spacing: 1px;
}
.nav-links a.active { color: var(--sage); border-bottom: 2px solid var(--sage); }

.btn-cta { 
    background: var(--sage); 
    color: white !important; 
    padding: 10px 25px; 
    border-radius: 50px; 
    border: none;
}

/* --- SEKTIONEN & GRID --- */
.section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card { 
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); 
}

/* --- TYPOGRAFIE --- */
h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.1; margin: 0 0 20px 0; }
h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; text-align: center; }
h3 { font-family: 'Playfair Display', serif; color: var(--sage); font-size: 1.5rem; }
.text-sage { color: var(--sage); }
.italic { font-style: italic; }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .grid-2, .card-grid { grid-template-columns: 1fr; gap: 40px; }
    h1 { font-size: 2.2rem; }
    .section { padding: 50px 0; }
    blockquote p { font-size: 1.6rem !important; }
}

.blend-logo { mix-blend-mode: multiply; }



/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--sage);
    color: white !important;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-outline {
    background-color: transparent;
    color: var(--stone) !important;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border: 2px solid var(--stone);
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--stone);
    color: white !important;
}

/* --- KARTEN OPTIMIERUNG --- */
.card { 
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    text-align: center; 
    /* Ein feiner Schatten und eine dünne Linie machen die Karten sichtbar */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Kleiner Schwebe-Effekt */
}

.card p {
    color: #555; /* Etwas weicheres Grau für den Fließtext in den Karten */
    font-size: 0.95rem;
}


/* --- LEISTUNGEN SPEZIFISCH --- */
.article-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border-left: 6px solid var(--sage);
}

.article-card.sand-border {
    border-left-color: var(--sand);
}

.list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.therapy-link {
    text-decoration: none;
    color: var(--stone);
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.therapy-link:hover {
    color: var(--sage);
}

.info-box {
    background-color: var(--linen);
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.call-to-action-box {
    background-color: #f1f4f1; /* Ganz helles Salbei */
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid rgba(139, 168, 137, 0.2);
}

@media (max-width: 768px) {
    .list-grid { grid-template-columns: 1fr; }
    .article-card { padding: 25px; }
}

/* --- KONTAKTFORMULAR --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h4 {
    margin-bottom: 5px;
    color: var(--sage);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box; /* Wichtig für korrekte Breite */
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(139, 168, 137, 0.1);
}

/* Erweitere die bestehende Regel um 'select' */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box; /* Das sorgt dafür, dass Padding die 100% Breite nicht sprengt */
    background-color: white; /* Einheitlicher Hintergrund */
    appearance: none; /* Entfernt Browser-Standard-Styles (optional) */
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info a:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}



/* --- ÜBER MICH SPEZIFISCH --- */
.profile-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background-color: var(--sand);
    border: 10px solid white;
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    /* Falls das Bild noch nicht perfekt ist, hilft ein sanfter Filter: */
    filter: sepia(10%) contrast(95%);
}

.gift-box {
    background-color: var(--linen);
    padding: 40px;
    border-radius: 30px;
    border: 2px dashed rgba(139, 168, 137, 0.3);
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .profile-container { grid-template-columns: 1fr; gap: 40px; }
    .gift-box { flex-direction: column; text-align: center; }
}

/* --- RECHTLICHES --- */
.legal-content {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #eee;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    color: var(--sage);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.legal-section h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--stone);
}

.legal-section p {
    margin-bottom: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .legal-content { padding: 30px; }
}


/* --- DETAILSEITEN --- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sage);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.info-box {
    background-color: white; /* Weißer Kern für mehr Frische */
    padding: 35px;
    border-radius: 20px;
    /* Ein sanfter, salbeigrüner Rand macht den Kasten sichtbar */
    border: 1px solid var(--sage); 
    /* Ein weicher Schatten gibt Tiefe */
    box-shadow: 0 10px 30px rgba(139, 168, 137, 0.1); 
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Optional: Ein kleiner vertikaler Akzentstreifen links */
.info-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: var(--sage);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .detail-grid { grid-template-columns: 1fr; }
}

/* Styling für den aktiven Menüpunkt */
.nav-links a.active {
    color: var(--sage) !important;
    border-bottom: 2px solid var(--sage);
    padding-bottom: 5px; /* Damit der Strich etwas Abstand zum Text hat */
}

/* --- BURGER MENU STYLES --- */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--stone);
    border-radius: 10px;
    transition: all 0.3s linear;
}

@media (max-width: 768px) {
    .burger-menu { display: flex; }

    .nav-links {
        display: none; /* Standardmäßig aus */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex; /* Zeigen, wenn aktiv */
    }
}

/* Animation für das X im Burger Menü */
.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.open span:nth-child(2) {
    opacity: 0;
}
.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}