/* ==========================================================================
   MindShivt - Master Stylesheet (v4.1)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */

    /* Regular - Gewicht 400 */
    @font-face {
        font-family: 'Poppins';
        src: url('fonts/Poppins-Regular.ttf') format('truetype'); /* Falls es .woff2 ist, hier ändern */
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    /* SemiBold - Gewicht 600 */
    @font-face {
        font-family: 'Poppins';
        src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
        font-weight: 600;
        font-style: normal;
        font-display: swap;
    }

    /* Bold - Gewicht 700 */
    @font-face {
        font-family: 'Poppins';
        src: url('fonts/Poppins-Bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
    :root {
        --color-navy-dark: #21224B;
        --color-navy-card: #21224B;
        --color-navy-footer: #1A1D39;
        --color-lime-accent: #D8DA00;
        --color-text-main: #161937;
        --color-text-body: #4B5366;
        --color-text-muted: #5C6479;
        --color-text-footer: #CBD5E0;
        --color-white: #FFFFFF;
        --color-border-light: #EEF0F4;
        --color-text-contact: #A4BDE4;

        --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

        --container-max-width: 1240px;
        --header-height: 80px;
        --footer-height: 62px;
        --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

/* --------------------------------------------------------------------------
   2. Reset & Global Box Sizing
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-body);
    line-height: 1.5;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

body.nav-open {
    overflow: hidden !important;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   3. Header Navigation (Fixed Header: Logo Left, Nav Middle, Social Right)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    padding: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: background-color var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.header-logo-wrapper {
    order: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.brand-logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

/* Centered Middle Navigation Menu */
.main-nav {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: #3b427a;
}

/* Active Page Underline */
.nav-link.active {
    font-weight: 700;
    color: var(--color-text-main);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2.5px;
}

/* Far Right Social Media Buttons (LinkedIn & Xing) */
.social-nav {
    order: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F1F3F7;
    color: var(--color-navy-dark);
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-navy-dark);
    color: var(--color-lime-accent);
    transform: translateY(-2px);
}

.social-icon {
    width: 17px;
    height: 17px;
}

/* --- Burger Button (Desktop: Versteckt) -------------------------------- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    font-size: 0;
}

.burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-navy-dark);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}

.burger.open span {
    background: var(--color-white);
}

.burger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. Hero Section & Main Views (Home / Kontakt)
   -------------------------------------------------------------------------- */
.main-content {
    margin-top: var(--header-height);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--header-height));
    width: 100%;
}

.hero-section {
    padding: clamp(24px, 3vh, 40px) 0 clamp(48px, 6vh, 80px) 0;
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
}

.kontakt-section {
    padding: clamp(24px, 3.5vh, 48px) 0 clamp(80px, 10vh, 140px) 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Eyebrow Label */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-navy-dark);
    margin-bottom: 20px;
    display: block;
}

/* Hero Headline */
.hero-title {
    font-size: clamp(64px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.14;
    color: var(--color-navy-dark);
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 680px;
}

/* Hero Paragraph Intro */
.hero-intro {
    font-size: clamp(18px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-navy-dark);
    margin-bottom: 28px;
    max-width: 640px;
}

.hero-intro p {
    margin-bottom: 8px;
}

.hero-intro p:last-child {
    margin-bottom: 0;
}

/* Primary Button (Home CTA) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-navy-dark);
    color: var(--color-lime-accent);
    padding: 15px 34px;
    font-size: 15px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(22, 25, 55, 0.22);
    background-color: #1f234c;
}

/* --------------------------------------------------------------------------
   5. Contact Card Box (Bild 2)
   -------------------------------------------------------------------------- */
.contact-card {
    background-color: var(--color-navy-card);
    border-radius: 18px;
    padding: clamp(24px, 2.2vw, 32px) clamp(28px, 2.5vw, 36px);
    width: 100%;
    max-width: 480px;
    color: var(--color-text-contact);
    margin-top: 12px;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(29, 33, 68, 0.12);
}

.contact-card-brand {
    font-size: 13px;
    font-weight: 600;
    color: var (--color-text-contact);
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 6px;
}

.contact-card-name {
    font-size: clamp(24px, 2vw, 26px);
    font-weight: 600;
    color: var (--color-text-contact);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.contact-card-address {
    font-size: 16px;
    color: var (--color-text-contact);
    margin-bottom: 22px;
    font-weight: 500;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-contact);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.contact-item:hover {
    color: var(--color-lime-accent);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var (--color-text-contact);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    color: var(--color-lime-accent);
}



.contact-card-button {
    display: inline-flex; 
    align-items: center;
    margin-top: 18px;
    padding: 10px 24px;      
    font-size: 15px;
    font-weight: 700;      
    color: var(--color-lime-accent);
    background-color: transparent;
    border: 1.5px solid var(--color-lime-accent);
    border-radius: 50px;    
    text-decoration: none;
    letter-spacing: 0.3px;
    width: fit-content;    
    transition: background-color var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast),
                transform var(--transition-fast);
}

.contact-card-button:hover {
    background-color: rgba(207, 255, 0, 0.1); 
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   6. Coach Portrait Image Container
   -------------------------------------------------------------------------- */
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.portrait-container {
    width: 460px;
    height: 620px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


/* --------------------------------------------------------------------------
   7. Placeholder Section
   -------------------------------------------------------------------------- */
.placeholder-section {
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

.placeholder-box {
    background-color: #F8FAFC;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
}

.placeholder-box h1 {
    font-size: 28px;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
}

.placeholder-box p {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   7.1 Legal / Impressum Pages (MindShivt Design System & Poppins Weights)
   -------------------------------------------------------------------------- */
.legal-section {
    padding: clamp(24px, 3.5vh, 44px) 0 clamp(44px, 6vh, 80px) 0;
    width: 100%;
}

.legal-container {
    width: 100%;
}

.legal-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 680px;
}

.legal-header {
    margin-bottom: 2px;
}

.legal-header .eyebrow {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600; /* Poppins SemiBold */
    letter-spacing: 1.2px;
    color: var(--color-navy-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    display: block;
}

.legal-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700; /* Poppins Bold */
    color: var(--color-navy-dark);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 6px;
}

.legal-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 400; /* Poppins Regular */
    color: var(--color-navy-dark);
}

.legal-divider {
    border: none;
    border-top: 1px solid var(--color-border-light);
    margin: clamp(10px, 1.4vh, 18px) 0;
    width: 100%;
    max-width: 680px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.legal-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.legal-block-title {
    font-family: var(--font-primary);
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 600; /* Poppins SemiBold */
    color: var(--color-navy-dark);
    letter-spacing: -0.4px;
    margin-bottom: 4px;
    line-height: 1.25;
}

.legal-block p {
    font-family: var(--font-primary);
    font-size: clamp(13.5px, 1vw, 15.5px);
    font-weight: 400; /* Poppins Regular */
    color: var(--color-text-body);
    line-height: 1.48;
}

.legal-label {
    font-weight: 600; /* Poppins SemiBold */
    color: var(--color-navy-dark);
}

.legal-address-group {
    margin-top: 4px;
}

.legal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: clamp(13.5px, 1vw, 15.5px);
    font-weight: 400;
    color: var(--color-text-body);
    line-height: 1.48;
    margin-top: 5px;
}

.legal-item-address {
    align-items: flex-start;
}

.legal-item-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    color: var(--color-navy-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   7.2 Philosophie Page (Prinzipien & Leitbild Cards)
   -------------------------------------------------------------------------- */
.philosophie-section {
    padding: clamp(24px, 3.5vh, 44px) 0 clamp(44px, 6vh, 80px) 0;
    width: 100%;
}

.philosophie-container {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5.5vh, 64px);
    width: 100%;
}

.philosophie-block {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vh, 24px);
    width: 100%;
}

.philosophie-block .eyebrow {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700; /* Poppins Bold 16px */
    letter-spacing: 1.5px;
    color: var(--color-navy-dark);
    text-transform: uppercase;
    margin-bottom: 0;
}

.philosophie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.2vw, 32px);
    width: 100%;
}

.card-navy {
    background-color: var(--color-navy-dark);
    border-radius: 28px;
    padding: clamp(26px, 2.8vw, 38px) clamp(28px, 3vw, 42px);
    color: var(--color-text-contact);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: clamp(200px, 22vh, 260px);
    box-shadow: 0 10px 30px rgba(33, 34, 75, 0.1);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card-navy:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(33, 34, 75, 0.18);
}

/* 1. Element: Tag -> Poppins Regular & Hellblau */
.card-tag {
    font-family: var(--font-primary);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400; /* Poppins Regular */
    color: var(--color-text-contact);
    margin-bottom: clamp(12px, 1.6vh, 20px);
    display: block;
}

/* 2. Element: Title -> Poppins SemiBold & Hellblau */
.card-title {
    font-family: var(--font-primary);
    font-size: clamp(20px, 1.8vw, 27px);
    font-weight: 600; /* Poppins SemiBold */
    color: var(--color-text-contact);
    line-height: 1.22;
    letter-spacing: -0.5px;
    margin-bottom: clamp(10px, 1.4vh, 16px);
}

/* 3. Element: Text -> Poppins Regular & Hellblau */
.card-text {
    font-family: var(--font-primary);
    font-size: clamp(13.5px, 0.98vw, 15.5px);
    font-weight: 400; /* Poppins Regular */
    color: var(--color-text-contact);
    line-height: 1.55;
    margin-top: 0;
}

/* Quote Author -> Poppins Regular, Kursiv, Rechtsbündig & Hellblau */
.quote-author {
    font-family: var(--font-primary);
    font-size: clamp(13px, 0.95vw, 15px);
    font-style: italic; /* Kursiv */
    font-weight: 400; /* Poppins Regular */
    color: var(--color-text-contact);
    text-align: right; /* Rechtsbündig */
    width: 100%;
    margin-top: -6px;
    margin-bottom: 14px;
}

.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(6px, 1vh, 12px);
}

.pill-badge {
    font-family: var(--font-primary);
    font-size: clamp(12.5px, 0.92vw, 14px);
    font-weight: 400; /* Poppins Regular */
    color: var(--color-text-contact);
    background-color: transparent;
    border: 1px solid rgba(164, 189, 228, 0.4);
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    cursor: default;
    transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.pill-badge:hover {
    border-color: var(--color-lime-accent);
    color: var(--color-lime-accent);
    background-color: rgba(207, 255, 0, 0.08);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   7.2.1 Referenzen Page (Filter & 3-Column Grid with Hover Overlay)
   -------------------------------------------------------------------------- */
.referenzen-section {
    padding: clamp(24px, 3.5vh, 44px) 0 clamp(60px, 8vh, 100px) 0;
    width: 100%;
}

.referenzen-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.referenzen-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-bottom: clamp(28px, 4vh, 44px);
}

.referenzen-header .eyebrow {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-navy-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.referenzen-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin: 0;
}

/* Filters */
.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: clamp(28px, 4vh, 44px);
    width: 100%;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.filter-group-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy-dark);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ref-filter-btn {
    font-family: var(--font-primary);
    font-size: clamp(12.5px, 0.92vw, 14px);
    font-weight: 500;
    color: var(--color-navy-dark);
    background-color: transparent;
    border: 1px solid rgba(164, 189, 228, 0.45);
    padding: 7px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.ref-filter-btn:hover {
    border-color: var(--color-lime-accent);
    color: var(--color-lime-accent);
    background-color: var(--color-navy-dark);
    transform: translateY(-1px);
}

.ref-filter-btn.active {
    background-color: var(--color-navy-dark);
    color: var(--color-lime-accent);
    border-color: var(--color-navy-dark);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(33, 34, 75, 0.18);
}

/* 3-Column Grid */
.referenzen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 2.5vw, 36px);
    width: 100%;
}

.reference-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.reference-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(33, 34, 75, 0.08);
    background-color: #EEF0F4;
    cursor: pointer;
}

.reference-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.reference-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: repeating-linear-gradient(45deg, #E2E8F0, #E2E8F0 14px, #EEF0F4 14px, #EEF0F4 28px);
}

/* Hover Overlay */
.reference-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy-dark);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(24px, 2.5vw, 36px) clamp(22px, 2.2vw, 30px);
    box-sizing: border-box;
    z-index: 2;
}

.reference-image-box:hover .reference-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.reference-hover-text {
    font-family: var(--font-primary);
    font-size: clamp(13.5px, 1vw, 15.5px);
    font-weight: 500;
    line-height: 1.58;
    color: var(--color-text-contact);
    text-align: left;
    margin: 0;
}

/* Card Info */
.reference-info {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.reference-name {
    font-family: var(--font-primary);
    font-size: clamp(17px, 1.3vw, 19px);
    font-weight: 700;
    color: var(--color-navy-dark);
    margin: 0;
    line-height: 1.25;
}

.reference-role {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-navy-dark);
    line-height: 1.3;
}

.reference-company {
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 500;
    color: #8CA6D1;
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   7.3 Über mich Page (Timeline Stations & Placeholders)
   -------------------------------------------------------------------------- */
.about-section {
    padding: clamp(24px, 3.5vh, 44px) 0 clamp(48px, 6vh, 88px) 0;
    width: 100%;
}

.about-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-bottom: clamp(36px, 5vh, 60px);
}

.about-header .eyebrow {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-navy-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    text-align: left;
    width: 100%;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
    text-align: left;
    width: 100%;
}

.about-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(14.5px, 1.1vw, 17.5px);
    font-weight: 400;
    color: var(--color-text-body);
    text-align: left;
    width: 100%;
}

.about-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.timeline-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* --- BASIS LAYOUT --- */
.station-block {
    display: grid;
    align-items: center;
    width: 100%;
    margin-bottom: clamp(60px, 8vh, 100px);
}

.station-left-image {
    grid-template-columns: minmax(320px, 460px) minmax(460px, 1fr);
    gap: clamp(36px, 4.5vw, 64px);
}

.station-right-image {
    grid-template-columns: minmax(460px, 1fr) minmax(320px, 460px);
    gap: clamp(36px, 4.5vw, 64px);
}

/* --- TEXT STYLING --- */
.station-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

.station-tag {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--color-navy-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.station-title {
    font-family: var(--font-primary);
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.station-text,
.heute-text {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.68;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.station-text {
    color: var(--color-navy-dark);
}

.heute-text {
    color: var(--color-text-contact);
}

.station-text p,
.heute-text p {
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
}

.station-text p:last-child,
.heute-text p:last-child {
    margin-bottom: 0;
}

.station-image-container,
[class^="station-image-container-"] {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(33, 34, 75, 0.08);
    background-color: #f0f0f0;
    display: flex;
}

.station-left-image .station-image-container,
.station-left-image [class^="station-image-container-"] {
    justify-self: start;
}

.station-right-image .station-image-container,
.station-right-image [class^="station-image-container-"] {
    justify-self: end;
}

.station-img,
[class^="station-img-"] {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.image-placeholder {
    width: 100%;
    min-height: clamp(280px, 32vh, 420px);
    background-color: #EEF0F4;
    border: 2px dashed #CBD5E0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #718096;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
}

.placeholder-icon {
    width: 36px;
    height: 36px;
    color: #A0AEC0;
}

/* Station 5 / HEUTE Dark Card */
.station-card-heute {
    background-color: var(--color-navy-dark);
    border-radius: 28px;
    padding: clamp(28px, 3.5vw, 44px);
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(460px, 1fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
    color: var(--color-text-contact);
    box-shadow: 0 16px 40px rgba(33, 34, 75, 0.16);
    width: 100%;
    margin-bottom: 0;
}

.heute-image-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
}

.heute-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.placeholder-dark {
    background-color: #161735;
    border-color: rgba(164, 189, 228, 0.3);
    color: #A4BDE4;
}

.heute-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.heute-tag {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-text-contact);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.heute-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 700;
    color: var(--color-text-contact);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   8. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-navy-footer);
    color: var(--color-text-footer);
    padding: 18px 0;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo {
    height: 26px;
    width: auto;
    display: block;
}

.footer-copyright {
    font-weight: 600;
    color: #CBD5E0;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 28px;
}

.footer-link {
    color: #A0AEC0;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-link:hover,
.footer-link.active {
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   9. Desktop Layout & Natural Scroll (> 768px, stays Desktop at 150% Zoom)
   -------------------------------------------------------------------------- */
@media (min-width: 769px) {
    .main-nav .nav-list {
        gap: clamp(14px, 2vw, 32px);
    }
}

@media (min-width: 769px) and (min-height: 650px) {
    html, body {
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .main-content {
        min-height: calc(100vh - var(--header-height) - var(--footer-height));
        overflow: visible;
    }

    .hero-section {
        min-height: calc(100vh - var(--header-height) - var(--footer-height));
        padding: 0;
    }

    .portrait-container {
        max-height: calc(100vh - var(--header-height) - var(--footer-height) - 40px);
    }

    .portrait-img {
        max-height: calc(100vh - var(--header-height) - var(--footer-height) - 40px);
        object-fit: cover;
    }

    .site-footer {
        height: var(--footer-height);
        display: flex;
        align-items: center;
    }
}

/* --------------------------------------------------------------------------
   10. Mobile Responsiveness & Mobile Overlay (Max Width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    html, body {
        height: auto;
        max-height: none;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .site-header {
        height: var(--header-height);
        padding: 0;
        width: 100%;
    }

    /* Mobile Header Layout: Logo (Left), Social (Middle/Right), Burger (Far Right) */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .header-logo-wrapper {
        order: 1;
    }

    .social-nav {
        order: 2;
        margin-left: auto;
        gap: 8px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-icon {
        width: 15px;
        height: 15px;
    }

    /* Burger Button - Ganz rechts */
    .burger {
        order: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin: 0;
        z-index: 1002;
        position: relative;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--color-navy-dark);
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
    }

    .burger.open span {
        background: var(--color-white);
    }

    .burger.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Fullscreen Modal Overlay for Burger Menu */
    .main-nav {
        order: 4;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: var(--color-navy-dark);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        transform: translateY(-20px);
        padding: 80px 24px 40px 24px;
        margin-top: 0;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-link {
        font-size: clamp(20px, 5.5vw, 28px);
        font-weight: 600;
        padding: 6px 12px;
        color: var(--color-white);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--transition-fast), transform var(--transition-fast);
    }

    .nav-link:hover,
    .nav-link.active {
        font-weight: 700;
        color: var(--color-lime-accent);
        text-decoration: underline;
        text-underline-offset: 8px;
        text-decoration-thickness: 3px;
    }

    /* Mobile Page Views */
    .main-content {
        margin-top: var(--header-height);
        height: auto;
        min-height: calc(100vh - var(--header-height));
        overflow: visible;
        width: 100%;
    }

    .hero-section {
        padding: 24px 0 40px 0;
        height: auto;
        min-height: auto;
        width: 100%;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .eyebrow {
        font-size: clamp(10px, 2.5vw, 12px);
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(18px, 4.6vw, 32px);
        line-height: 1.2;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        max-width: 100%;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-intro {
        font-size: clamp(13px, 3.2vw, 16px);
        line-height: 1.5;
        margin-bottom: 24px;
        max-width: 100%;
        word-break: normal;
        overflow-wrap: normal;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Mobile Contact Card */
    .contact-card {
        width: 100%;
        max-width: 100%;
        padding: 22px 18px;
        border-radius: 16px;
        margin-top: 0;
        box-sizing: border-box;
    }

    .contact-card-name {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .contact-card-address {
        font-size: 13.5px;
        margin-bottom: 18px;
    }

    .contact-item {
        font-size: 13px;
        gap: 10px;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    /* Mobile Coach Portrait */
    .hero-image-wrapper {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }

    .portrait-container {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 460 / 620;
        border-radius: 12px;
        overflow: hidden;
        margin: 0 auto;
    }

    .portrait-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Mobile Philosophie Grid & Cards */
    .philosophie-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-navy {
        border-radius: 20px;
        padding: 24px 20px;
        min-height: auto;
    }

    .card-title {
        font-size: 19px;
        line-height: 1.25;
    }

    .card-text {
        font-size: 13.5px;
    }

    /* Mobile Placeholders */
    .placeholder-section {
        padding: 36px 0;
        width: 100%;
    }

    .placeholder-box {
        width: 100%;
        max-width: 100%;
        padding: 32px 18px;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .placeholder-box h1 {
        font-size: 24px;
    }

    .placeholder-box p {
        font-size: 15px;
    }

    /* Mobile Über mich Timeline & Stations */
    .about-section {
        padding: 24px 0 48px 0;
    }

    .about-header {
        margin-bottom: 32px;
    }

    .about-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 10px;
    }

    .about-subtitle {
        font-size: clamp(13.5px, 3.5vw, 15.5px);
        text-align: left;
    }

    .timeline-wrapper {
        gap: 40px;
    }

    .station-block,
    .station-left-image,
    .station-right-image {
        display: flex !important;
        flex-direction: column !important; 
        gap: 24px !important;
        margin-bottom: 48px !important; 
    }

    .station-content {
        width: 100% !important;
        order: 1 !important; 
    }

    .station-image-container,
    [class*="station-image-container"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        order: 2 !important; /* Bild immer sauber nach unten */
        border-radius: 18px !important;
        justify-self: center !important;
    }

    .station-img,
    [class*="station-img"] {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
        border-radius: 18px !important;
    }

    .image-placeholder {
        width: 100% !important;
        min-height: 250px !important;
        border-radius: 18px !important;
    }

    .station-title {
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 12px;
    }

    .station-text {
        font-size: 15px;
        line-height: 1.55;
    }

    /* Mobile Station 5 / HEUTE Dark Card */
    .station-card-heute {
        display: flex !important;
        flex-direction: column !important; /* Text first, image second */
        padding: 24px 20px !important;
        border-radius: 20px !important;
        gap: 24px !important;
    }

    .heute-content {
        order: 1 !important;
        width: 100% !important;
    }

    .heute-image-container {
        order: 2 !important;
        width: 100% !important;
        border-radius: 16px !important;
    }

    .heute-img {
        border-radius: 16px !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Mobile Footer */
    .footer-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        width: 100%;
    }

    .footer-left {
        flex-wrap: wrap;
    }

    .footer-logo {
        height: 22px;
    }

    .footer-right {
        gap: 20px;
    }

    .footer-link {
        font-size: 13.5px;
    }

    /* Mobile Referenzen */
    .referenzen-section {
        padding: 24px 0 48px 0;
    }

    .referenzen-header {
        margin-bottom: 24px;
    }

    .referenzen-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .referenzen-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reference-image-box {
        aspect-ratio: 1 / 1;
    }
}







