/* ================================================= */
/* SPRACHUMSCHALTER */
/* ================================================= */

.lang-switch {
    color: var(--gold) !important;
    font-weight: 600;
    border: 1px solid var(--gold);
    padding: 3px 8px;
    border-radius: 3px;
    transition: all 0.25s ease;
}

.lang-switch:hover {
    background: var(--gold);
    color: white !important;
}

/* ================================================= */
/* FARBEN */
/* ================================================= */

:root {
    --cream: #f5f0e8;
    --cream-dark: #ece3d6;

    --gold: #b89455;
    --gold-light: #cbb07d;

    --text: #171513;
    --muted: #7e756b;

    --white: #fbf9f5;

    --line: rgba(184, 148, 85, .35);
}


/* ================================================= */
/* GRUNDEINSTELLUNGEN */
/* ================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* ================================================= */
/* NAVIGATION */
/* ================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;

    background: rgba(245, 240, 232, .93);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(184, 148, 85, .16);
}

.nav-inner {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 24px;
    letter-spacing: .16em;
}

.brand span {
    color: var(--gold);
}

.links {
    display: flex;
    gap: 30px;

    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.links a:hover {
    color: var(--gold);
}


/* ================================================= */
/* HERO / STARTSEITE */
/* ================================================= */

.hero {
    min-height: 100vh;

    display: grid;
    place-items: center;

    padding: 120px 0 70px;

    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--gold);

    font-size: 20px;
    letter-spacing: .32em;
    text-transform: uppercase;

    margin-bottom: 14px;
}

h1 {
    font-size: clamp(48px, 8vw, 94px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: .02em;

    margin: 0;
}

.hero-sub {
    max-width: 650px;

    margin: 28px auto 38px;

    color: var(--muted);

    font-size: clamp(19px, 2.2vw, 26px);
    line-height: 1.55;
}


/* ================================================= */
/* BUTTONS */
/* ================================================= */

.button {
    display: inline-block;

    padding: 14px 28px;

    border: 1px solid var(--gold);

    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;

    transition: .25s ease;
}

.button:hover {
    background: var(--gold);
    color: white;
}


/* ================================================= */
/* STANDARD-SEKTIONEN */
/* ================================================= */

section {
    padding: 105px 0;
}

.section-label {
    color: var(--gold);

    font-size: 22px;
    letter-spacing: .28em;
    text-transform: uppercase;

    margin-bottom: 12px;
}

h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.05;

    margin: 0 0 25px;
}

.intro {
    font-size: 19px;
    color: var(--muted);

    max-width: 680px;
}

.divider {
    width: 130px;
    height: 1px;

    background: var(--line);

    margin: 28px 0;
}

/* ================================================= */
/* ÜBER MICH */
/* ================================================= */

.two-col {
    display: grid;
    grid-template-columns: 65% 35%;

    gap: 50px;
    align-items: center;
}


/* ================================================= */
/* PORTRAIT */
/* ================================================= */

.portrait-box {
    width: fit-content;
    max-width: 100%;
    height: auto;

    justify-self: end;
    overflow: hidden;

    background: var(--cream-dark);
    border: 4px solid var(--gold);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);

    transition: transform .3s ease;
}

.portrait-box:hover {
    transform: translateY(-4px);
}

.portrait-image {

    width: auto;
    height: 480px;

    display: block;

    /* Bild wird automatisch eingepasst */
    object-fit: contain;

    /* Fokus auf Gesicht */
    object-position: center top;
}
/* ================================================= */
/* KARTEN */
/* ================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
    margin-top: 48px;
}

.card {
    background: rgba(251, 249, 245, .55);

    padding: 34px 28px;

    border-top: 1px solid var(--gold);

    min-height: 230px;
}

.card h3 {
    font-size: 24px;
    font-weight: 400;

    margin: 0 0 12px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.card.quote {
    max-width: 500px;
    min-height: auto;

    margin: 40px auto;

    padding: 24px 24px;

    text-align: center;

    border-left: 4px solid var(--gold);
}

.card.quotep {
    font-style: italic !important;
    color: red !important;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ================================================= */
/* HELLER HINTERGRUND */
/* ================================================= */

.soft {
    background: var(--cream-dark);
}


/* ================================================= */
/* ABLAUF */
/* ================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
    margin-top: 50px;
}

.step-number {
    color: var(--gold);

    font-size: 16px;
    letter-spacing: .15em;
}

.step h3 {
    font-size: 24px;
    font-weight: 400;

    margin: 12px 0 8px;
}

.step p {
    color: var(--muted);
    margin: 0;
}

/* ================================================= */
/* LEISTUNGEN */
/* ================================================= */

.service-cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 48px;
}

/* ================================================= */
/* EINZEL-ZITAT (GROSS) */
/* ================================================= */

.quote {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    
    /* Passt sich automatisch der Bildschirmgröße an */
    font-size: clamp(22px, 3.5vw, 32px); 
    line-height: 1.6;
    
    color: var(--text);
    text-align: center;
    
    /* Verhindert, dass das Zitat auf großen Bildschirmen zu breit gezogen wird */
    max-width: 800px; 
    margin: 0 auto;
    
    padding: 0 20px;
}

/* Optionale feine goldene Anführungszeichen davor und danach */
.quote::before {
    content: "„";
    color: var(--gold);
    font-size: 1.5em;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 5px;
}

.quote::after {
    content: "“";
    color: var(--gold);
    font-size: 1.5em;
    line-height: 0;
    vertical-align: -0.3em;
    margin-left: 5px;
}

/* ================================================= */
/* ZITATE */
/* ================================================= */


.quote-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px; 
    max-width: 760px; 
    margin: 50px auto 0 auto; 
    width: 100%;
}

/* ================================================= */
/* PREISE */
/* ================================================= */

.price {
    font-size: 42px;
    color: var(--gold);
    margin: 12px 0;
    font-weight: 400;
}

.price small {
    display: block;
    font-size: 16px;
    color: var(--muted);
}

/* Einzelgespräch */

.pricing-single {
    background: rgba(251, 249, 245, .55);

    padding: 34px 28px;

    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    margin-top: 30px;

    text-align: center;
}

/* Gruppenberatung */

.group-header {
    margin-top: 60px;
}

.pricing-first {
    background: rgba(251, 249, 245, .55);

    padding: 34px 28px;

    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    margin: 25px 0 30px;

    text-align: center;
}

/* 4 Karten */

.pricing-card {
    background: rgba(251, 249, 245, .55);

    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    padding: 18px;

    text-align: center;

    min-width: 0;

    width: 100%;
}
.pricing-cards {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    width: 100%;

}

/* 8er Karte */

.best-offer {

    border: 2px solid var(--gold);

    background: rgba(212, 175, 55, 0.08);
}

.offer-badge {

    color: var(--gold);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 10px;


}

/* ================================================= */
/* KONTAKT */
/* ================================================= */

.contact {
    background: #1c1916;
    color: #f5f0e8;
}

.contact .section-label {
    color: var(--gold-light);
}

.contact .intro {
    color: #c9c0b5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
}

.contact-item {
    padding: 20px 0;

    border-bottom: 1px solid rgba(203, 176, 125, .25);
}

.contact-item small {
    display: block;

    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}


/* ================================================= */
/* IMPRESSUM / DATENSCHUTZ */
/* ================================================= */

.legal {
    padding-top: 150px;
    min-height: 75vh;
}

.legal h1 {
    font-size: clamp(44px, 7vw, 72px);
    margin-bottom: 35px;
}

.legal h2 {
    font-size: 32px;
    margin-top: 48px;
}

.legal p,
.legal li {
    max-width: 850px;
    color: #5f574f;
}

.legal .placeholder {
    color: #9b6f2d;
    background: #f0e5d3;

    padding: 2px 6px;
    border-radius: 3px;
}

.legal-back {
    display: inline-block;

    margin-top: 30px;

    color: var(--gold);

    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ================================================= */
/* FOOTER */
/* ================================================= */

footer {
    background: #1c1916;
    color: #a9a095;

    border-top: 1px solid rgba(203, 176, 125, .2);

    padding: 25px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}

footer a:hover {
    color: white;
}
/* ================================================= */
/* MOBILE (Gilt NUR für echte Smartphones unter 768px) */
/* ================================================= */

@media (max-width: 767px) {

.links {
    display: flex;
    gap: 0;
}

.links a:not(.lang-switch) {
    display: none;
}

.links .lang-switch {
    display: inline-block;
}
   
    .quote-cards {
        grid-template-columns: 1fr !important;
        max-width: 360px; 
        gap: 20px;
    }
/* NEU: Aktiviert horizontales Scrollen für die Angebote auf Handys */
    .service-cards {
        display: flex !important; /* Wechselt von Grid zu Flexbox */
        overflow-x: auto;         /* Erlaubt horizontales Scrollen */
        scroll-snap-type: x mandatory; /* Aktiviert den "Einrast"-Effekt */
        gap: 20px;
        padding-bottom: 15px;      /* Platz für den Scroll-Effekt */
        
        /* Versteckt die unschöne Scrollbar, Scrollen funktioniert aber weiterhin */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    /* Versteckt Scrollbar für Chrome, Safari & Opera */
    .service-cards::-webkit-scrollbar {
        display: none;
    }

    /* NEU: Definiert die Breite der einzelnen Angebots-Karten auf Handys */
    .service-cards .card {
        flex: 0 0 82%; /* Jede Karte nimmt 82% der Breite ein (Rest ist für den "Vorschau"-Effekt der nächsten Karte) */
        scroll-snap-align: start; /* Richtet die Karte beim Einrasten links aus */
        min-height: 250px;
    }

   /* NEU: Aktiviert horizontales Scrollen für den Ablauf (Schritte) auf Handys */
    .steps {
        display: flex !important;      /* Wechselt von Grid zu Flexbox */
        overflow-x: auto;              /* Erlaubt horizontales Scrollen */
        scroll-snap-type: x mandatory; /* Aktiviert den "Einrast"-Effekt */
        gap: 25px;
        padding-bottom: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Versteckt Scrollbar für den Ablauf */
    .steps::-webkit-scrollbar {
        display: none;
    }

    /* NEU: Breite der einzelnen Schritte auf Handys */
    .steps .step {
        flex: 0 0 82%;            /* Jede Box nimmt 82% der Breite ein */
        scroll-snap-align: start; /* Richtet den Schritt beim Einrasten links aus */
    }
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

.portrait-box {
    width: 75%;
    max-width: 280px;
    height: auto;

    justify-self: center;

    overflow: hidden;
    border: 4px solid var(--gold);
    background: var(--cream-dark);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.portrait-image {
    display: block;
    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;
}
    section {
        padding: 75px 0;
    }

    footer .container {
        flex-direction: column;
    }

}

/* ================================================= */
/* TABLET (Ab 768px bis 1200px) */
/* ================================================= */

@media (min-width: 768px) and (max-width: 1200px) {

    .pricing-cards {
        grid-template-columns: 1fr 1fr !important;
    }

    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ================================================= */
/* LOGO */
/* ================================================= */

.logo {
    display: block;
    width: 850px;
    max-width: 95vw;
    height: auto;
    margin: 0 auto 30px auto;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* HONORAR FIX FÜR TABLET & DESKTOP */

.pricing-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.pricing-card {
    width: 100% !important;
}

/* ================================================= */
/* SICHERHEIT GEGEN HORIZONTALES SCROLLEN */
/* ================================================= */

html,
body {
    overflow-x: hidden;
}
/* ================================================= */
/* KONTAKTFORMULAR */
/* ================================================= */

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form .form-field {
    padding: 20px 0 26px;
    margin: 0;
    border-bottom: 1px solid rgba(203, 176, 125, .25);
}

.contact-form .form-label {
    display: block;
    margin: 0 0 18px;

    color: var(--gold-light);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    margin: 0;
    padding: 0;

    border: 0;
    outline: none;
    border-radius: 0;

    background: transparent;
    color: #f5f0e8;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;

    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #f5f0e8;
    opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border: 0;
    box-shadow: none;
}

/* Auswahlfeld */
.contact-form select {
    cursor: pointer;
    padding-right: 34px;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
        linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
    background-position:
        calc(100% - 13px) 55%,
        calc(100% - 7px) 55%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form select option {
    color: #171513;
    background: #f5f0e8;
}

/* Nachrichtenfeld */
.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* Absenden-Button */
.contact-form .form-submit {
    align-self: flex-start;
    margin-top: 28px;
    padding: 14px 28px;

    border: 1px solid var(--gold);
    border-radius: 0;

    background: transparent;
    color: #f5f0e8;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    font-weight: 400;

    letter-spacing: .16em;
    text-transform: uppercase;

    cursor: pointer;
    transition: .25s ease;
}

.contact-form .form-submit:hover {
    background: var(--gold);
    color: white;
}

/* Mobile */
@media (max-width: 767px) {

    .contact-form .form-field {
        padding: 18px 0 22px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 17px;
    }

    .contact-form .form-submit {
        width: 100%;
    }
}