/* =============================================
   SARAH P. – SYSTEMISCHE COACHING & ACHTSAMKEIT
   Design System & Globale Stile
   ============================================= */

@font-face {
    font-family: 'Northwell Clean';
    src: url('../fonts/NorthwellClean.woff2') format('woff2'),
    url('../fonts/NorthwellClean.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* ─── Google Fonts ─── */
/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/montserrat-v31-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/montserrat-v31-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/montserrat-v31-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ─── CSS Variablen ─── */
:root {
    /* Farben */
    --fast-schwarz:  #031722;
    --petrol:        #0A374D;
    --rosa:          #AE8083;
    --creme:         #F1EAE9;
    --warmweiss:     #FAFAFA;

    /* Typografie */
    --font-main: 'Montserrat', sans-serif;

    /* Abstände */
    --section-padding: 100px 0;
    --container-max: 1160px;
    --container-pad: 0 40px;
}

/* ─── Reset & Basis ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6em;
    color: var(--fast-schwarz);
    background: var(--warmweiss);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── Typografie ─── */
h1 {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--petrol);
    letter-spacing: 0px;
}

h2 {
    font-size: 36px;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--petrol);
    letter-spacing: 0px;
}

h3 {
    font-size: 24px;
    line-height: 1.4em;
    font-weight: 700;
    color: var(--petrol);
    letter-spacing: 0px;
}

h4 {
    font-size: 20px;
    line-height: 1.6em;
    font-weight: 600;
    color: var(--petrol);
    letter-spacing: 0px;
}

h5 {
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 700;
    color: var(--rosa);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h6 {
    font-size: 12px;
    line-height: 1.4em;
    font-weight: 700;
    color: var(--rosa);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

p {
    font-size: 16px;
    line-height: 1.6em;
    color: var(--fast-schwarz);
}

blockquote, .zitat {
    font-size:48px;
    line-height: 1.4em;
    color: var(--rosa);
    font-style: italic;
}

.wie-zitat .zitat {
    font-family: 'Northwell Clean', cursive;
    font-style: normal;
}

/* ─── Container ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
}

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 18px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--rosa);
    color: var(--creme);
}
.btn-primary:hover {
    background-color: var(--petrol);
    color: var(--creme);
}

.btn-secondary {
    background-color: transparent;
    color: var(--petrol);
    border: 2px solid var(--petrol);
}
.btn-secondary:hover {
    background-color: var(--petrol);
    color: var(--creme);
}

.btn-ghost {
    background-color: transparent;
    color: var(--rosa);
    padding: 8px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--rosa);
    letter-spacing: 1px;
}
.btn-ghost:hover {
    color: var(--petrol);
    border-color: var(--petrol);
}

/* Helle Variante für dunkle Hintergründe */
.btn-primary-light {
    background-color: var(--creme);
    color: var(--petrol);
}
.btn-primary-light:hover {
    background-color: var(--rosa);
    color: var(--creme);
}

/* ─── Trennlinie ─── */
.divider {
    width: 60px;
    height: 2px;
    background-color: var(--rosa);
    margin: 24px 0;
}

.divider-center {
    margin: 24px auto;
}

/* ─── Akzentlinie vor Überschrift ─── */
.label-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.label-line::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--rosa);
    flex-shrink: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    height: 96px;
    display: flex;
    align-items: center;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(174, 128, 131, 0.15);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(3, 23, 34, 0.08);
}

.nav-inner {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-img {
    height: 94px;
    width: auto;
}

.nav-logo-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--petrol);
    letter-spacing: 0.5px;
}

.nav-logo-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--rosa);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--petrol);
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rosa);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--rosa);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--rosa);
}

.nav-cta {
    font-size: 13px !important;
    font-weight: 700 !important;
    background-color: var(--rosa);
    color: var(--creme) !important;
    padding: 10px 22px;
    border-radius: 18px;
    transition: background-color 0.3s ease !important;
    letter-spacing: 1px !important;
}

.nav-cta:hover {
    background-color: var(--petrol) !important;
    color: var(--creme) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--petrol);
    transition: all 0.3s ease;
}

/* ─── Seiteninhalt versetzt wegen fixed Nav ─── */
.page-content {
    padding-top: 96px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: var(--petrol);
    color: var(--creme);
    padding: 120px 40px 80px;
    border-top: 2px solid var(--rosa);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 96px;
    border-bottom: 1px solid rgba(241, 234, 233, 0.15);
}

.footer-logo-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--creme);
    margin-bottom: 6px;
}

.footer-logo-tagline {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 20px;
}

.footer-bio {
    font-size: 14px;
    line-height: 1.7em;
    color: rgba(241, 234, 233, 0.7);
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(241, 234, 233, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--creme);
}

.footer-contact-item {
    font-size: 14px;
    color: rgba(241, 234, 233, 0.7);
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(241, 234, 233, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(241, 234, 233, 0.4);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--creme);
}

/* =============================================
   BILD-PLATZHALTER
   ============================================= */

.img-placeholder {
    background: linear-gradient(135deg, var(--creme) 0%, #e8dbd9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rosa);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(174, 128, 131, 0.05) 8px,
            rgba(174, 128, 131, 0.05) 16px
    );
}

/* =============================================
   FORMULAR – GETEILTE ZUSTÄNDE
   (Kontakt & Kurs; .form selbst liegt seitenspezifisch)
   ============================================= */

/* Erfolgsmeldung: ersetzt nach dem Absenden den Formularinhalt */
.form-erfolg {
    text-align: center;
    color: var(--petrol);
    font-weight: 600;
    padding: 24px 0;
}

/* Hinweis, wenn JavaScript deaktiviert ist (Formular wird dann ausgeblendet) */
.form-noscript {
    margin-top: 20px;
    padding: 14px 20px;
    background: var(--creme);
    border-left: 3px solid var(--rosa);
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: var(--petrol);
    line-height: 1.6;
}

.form-noscript a {
    color: var(--rosa);
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
    :root {
        --container-pad: 0 24px;
        --section-padding: 72px 0;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .zitat { font-size: 24px; }

    .nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 96px;
        left: 0;
        width: 100%;
        background: var(--warmweiss);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 2px solid var(--creme);
        box-shadow: 0 10px 30px rgba(3,23,34,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--creme);
    }

    .nav-cta {
        margin-top: 12px;
        border-bottom: none !important;
        display: inline-block;
    }

    .nav-hamburger {
        display: flex;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
}