/* =========================================
   FARBBLICK CSS (Warm Minimalism & Vollbild-Layout)
   ========================================= */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
/* Smooth Scrolling aktiviert! */
html { scroll-behavior: smooth; }
body { background-color: #ffffff; color: #0A4A54; overflow-x: hidden; }

/* HEADER & HERO BEREICH */
.white-stage { width: 100%; background-color: #ffffff; padding: 5rem 6%; min-height: 45vh; display: flex; align-items: center; position: relative; z-index: 20; }
.header-grid { width: 100%; max-width: 1600px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; }
.brand-nav-group { display: flex; flex-direction: column; gap: 4rem; }

/* Einfache Logo-Struktur */
.logo-area { display: flex; flex-direction: column; }
.category-label { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.5rem; font-weight: 300; }
.logo-text { font-size: 3.5rem; font-weight: 800; letter-spacing: 2px; line-height: 1; background: linear-gradient(90deg, #D9A0A0 0%, #F1C5B6 40%, #A8C2C0 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }

.side-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.side-nav a { text-decoration: none; font-size: 1.2rem; color: #555; font-weight: 300; position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
/* Unterstrich in Lachsrosa (#F1C5B6) */
.side-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #F1C5B6; transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.side-nav a:hover { color: #0A4A54; }
.side-nav a:hover::after { width: 100%; }

.slogan-area { text-align: left; max-width: 700px; margin-top: 7.5rem; }
.main-slogan { font-size: 5.5rem; font-weight: 100; line-height: 1.05; color: #0A4A54; letter-spacing: -2px; margin-bottom: 2rem; }
.expert-name { font-size: 1.3rem; font-weight: 400; letter-spacing: 1px; color: #D9A0A0; }

/* =========================================
   UNIVERSAL BILD-BANNER & BEIDSEITIGE FADES
   ========================================= */
.aquarell-wrapper { width: 100%; height: 60vh; position: relative; overflow: hidden; background-color: #fff; }
.image-animated { width: 100%; height: 100%; background-size: cover; background-position: center; animation: breathingScale 6s ease-in-out infinite alternate; }

.bg-hero { background-image: url('assets/header_bild.jpg'); }
.bg-worte { background-image: url('assets/worte_finden.jpg'); }
.bg-schwerpunkte { background-image: url('assets/schwerpunkte.jpg'); }
.bg-ende { background-image: url('assets/farbblick_ende.jpg'); }
.bg-final { background-image: url('assets/endbild.jpg'); }

/* FADE 1: Oben Weiß, Unten Weiß */
.watercolor-edge { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 10%, rgba(255,255,255,0) 30%), 
                linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 10%, rgba(255,255,255,0) 30%); }

/* FADE 2: Oben Hellgrau, Unten Weiß */
.watercolor-edge-mixed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
    background: linear-gradient(to bottom, rgba(250,250,250,1) 0%, rgba(250,250,250,0.8) 10%, rgba(250,250,250,0) 30%), 
                linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 10%, rgba(255,255,255,0) 30%); }

@keyframes breathingScale { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* BANNER OVERLAY TEXT */
.banner-overlay-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 1100px; z-index: 15; text-align: center; padding: 0 5%; pointer-events: none; }
.banner-quote-text { font-size: 2.6rem; color: #0A4A54; font-weight: 200; line-height: 1.3; font-style: italic; text-shadow: 0px 4px 30px rgba(255, 255, 255, 0.9), 0px 0px 10px rgba(255, 255, 255, 0.8); text-wrap: balance; }

/* =========================================
   KONTAKTFORMULAR STYLES
   ========================================= */
.contact-form { max-width: 700px; margin: 4rem auto 0; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; color: #888; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 400; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 1rem; color: #0A4A54; background: #fafafa; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #F1C5B6; background: #fff; box-shadow: 0 4px 12px rgba(241, 197, 182, 0.15); }
.contact-form .btn-primary { border: none; cursor: pointer; padding: 1.2rem; font-size: 1.1rem; }

/* INHALTE BASICS */
.page-section { padding: 8rem 5%; width: 100%; }
.white-bg { background-color: #ffffff; }
.subtle-bg { background-color: #fafafa; }
.pb-0 { padding-bottom: 0 !important; }
.content-container { max-width: 1200px; margin: 0 auto; }
.section-kicker { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; font-weight: 300; }
.section-title { font-size: 3rem; color: #0A4A54; font-weight: 200; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -1px; text-wrap: balance; }
.lead-text { font-size: 1.5rem; color: #0A4A54; font-weight: 300; line-height: 1.5; margin-bottom: 1.5rem; }
.body-text { font-size: 1.15rem; color: #555; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.text-center-focus { max-width: 650px; margin: 0 auto; text-align: center; }

/* PHILOSOPHIE & BINDUNG */
.quote-text { font-size: 2.4rem; color: #0A4A54; font-weight: 200; line-height: 1.3; font-style: italic; margin-bottom: 2rem; text-wrap: balance; }
.highlight-text { background: linear-gradient(90deg, #F1C5B6 0%, #D9A0A0 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 400; }
.mt-4 { margin-top: 2rem; }

/* DEZENTER SYSTEMISCHER ANSATZ & HINWEIS */
.professional-note { padding-top: 2rem; border-top: 1px solid #eee; }
.note-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #D9A0A0; font-weight: 700; display: block; margin-bottom: 0.8rem; }
.professional-note p { font-size: 0.95rem; color: #888; line-height: 1.6; font-weight: 300; }

/* =========================================
   THEMEN GRID & ICONS
   ========================================= */
.themen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.thema-card { background: white; padding: 3rem 2rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border-top: 4px solid #F1C5B6; transition: all 0.4s ease; }
.thema-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }

.thema-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.thema-icon { margin-bottom: 0; flex-shrink: 0; margin-top: -2px; }
.thema-card h4 { margin-bottom: 0; color: #0A4A54; font-size: 1.3rem; line-height: 1.3; text-wrap: balance; }
.thema-card p { color: #666; font-weight: 300; line-height: 1.6; font-size: 1.05rem; }

/* BILDER HOVER EFFEKT */
.rounded-image { width: 100%; border-radius: 16px; transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

/* =========================================
   PORTRAIT BILD & WEICHE KANTEN OVERLAY
   ========================================= */
.portrait-image { 
    width: 100%; 
    display: block;
    border-radius: 200px 200px 20px 20px; 
    margin-bottom: 2rem; 
    transition: all 0.6s ease; 
}

.cv-sidebar .hover-image-box { 
    position: relative; 
    border-radius: 200px 200px 20px 20px; 
    margin-bottom: 2rem; 
    background: transparent;
}

.cv-sidebar .hover-image-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    pointer-events: none; 
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 8%, rgba(255,255,255,0) 25%);
    box-shadow: inset 20px 0 25px -15px #ffffff,
                inset -20px 0 25px -15px #ffffff;
}

.shadow-effect { box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.hover-image-box { overflow: hidden; border-radius: 16px; }

.cv-sidebar .hover-image-box .portrait-image { margin-bottom: 0; }
.hover-image-box:hover .rounded-image, .hover-image-box:hover .portrait-image { transform: scale(1.04); box-shadow: 0 25px 50px rgba(10, 74, 84, 0.15); }

/* BOXEN HOVER (FAQ-Cards) */
.faq-card { background-color: #ffffff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: background 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease; border-top: 4px solid #C2D6C5; }
.faq-card:hover { background: linear-gradient(135deg, #ffffff 0%, #F0F6F4 100%); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }

/* EXPERTISE LISTEN */
.cv-layout { display: grid; grid-template-columns: 300px 1fr; gap: 6rem; align-items: start; }
.expert-name-small { font-size: 1.5rem; color: #0A4A54; margin-bottom: 0.2rem; }
.expert-titles { font-size: 1rem; color: #888; margin-bottom: 2rem; }
.cv-short-list h4 { color: #0A4A54; margin-bottom: 1rem; font-size: 1.1rem; }
.cv-short-list ul { list-style: none; }
.cv-short-list li { font-size: 0.95rem; color: #555; margin-bottom: 0.5rem; padding-left: 1rem; position: relative; }
.cv-short-list li::before { content: '•'; color: #D9A0A0; position: absolute; left: 0; }
.academic-block { margin-bottom: 3.5rem; }
.academic-title { font-size: 1.5rem; color: #0A4A54; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; margin-bottom: 1.5rem; font-weight: 400; }
.academic-list, .publication-list { list-style: none; }
.academic-list li, .publication-list li { font-size: 1.1rem; color: #4a4a4a; font-weight: 300; margin-bottom: 1.2rem; line-height: 1.6; }
.pub-year { display: inline-block; background-color: #F5EDE6; color: #0A4A54; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.9rem; font-weight: 600; margin-right: 1rem; }

/* FAQ GRID */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.faq-card h4 { color: #0A4A54; font-size: 1.2rem; margin-bottom: 1rem; }
.faq-card p { color: #555; font-weight: 300; line-height: 1.6; }

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 60px;
    height: 60px;
    background-color: #F1C5B6; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 999;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 74, 84, 0.15); 
}

/* FOOTER */
.site-footer { background-color: #0A4A54; color: #ffffff; padding: 4rem 5%; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-size: 2rem; letter-spacing: 2px; margin-bottom: 0.5rem; color: #F1C5B6; }
.footer-brand p { color: rgba(255,255,255,0.7); font-weight: 300; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.btn-primary { background-color: #F1C5B6; color: #0A4A54; text-decoration: none; padding: 1rem 2rem; border-radius: 30px; font-weight: 600; transition: background-color 0.3s; }
.btn-primary:hover { background-color: #ffffff; }

/* SUB-FOOTER */
.sub-footer { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4rem; padding-top: 2rem; padding-bottom: 3rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; }
.credit-link { color: #F1C5B6; text-decoration: none; transition: color 0.3s ease; }
.credit-link:hover { color: #ffffff; }

/* LINKEDIN LINK */
.linkedin-link { color: rgba(255,255,255,0.7) !important; text-decoration: none !important; font-weight: 300; transition: color 0.3s; }
.linkedin-link:hover { color: #ffffff !important; }
.linkedin-highlight { color: #F1C5B6 !important; transition: color 0.3s; }
.linkedin-link:hover .linkedin-highlight { color: #ffffff !important; }

/* =========================================
   RESPONSIVE UTILITIES
   ========================================= */
.mobile-only { display: none !important; }

/* MEDIA QUERIES (Handy & Tablet Anpassungen) */
@media (max-width: 1024px) { 
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .themen-grid { grid-template-columns: 1fr; }
    .split-layout, .cv-layout, .faq-grid { grid-template-columns: 1fr; gap: 4rem; } 
    
    .form-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .footer-content { 
        flex-direction: column; 
        align-items: flex-start; 
        width: fit-content; 
        margin: 0 auto; 
        gap: 3rem; 
    } 
    .footer-links { align-items: flex-start; } 
    
    .main-slogan { font-size: 4rem; } 
    .quote-text { font-size: 2rem; }
    .banner-quote-text { font-size: 2rem; }
    
    .header-grid { flex-direction: column; gap: 3rem; }
    .brand-nav-group { gap: 2rem; width: 100%; }
    
    .slogan-area { 
        width: fit-content; 
        align-self: flex-end; 
        margin-top: 1rem; 
    }
    
    .side-nav ul { 
        flex-direction: row; 
        flex-wrap: wrap; 
        column-gap: 1.5rem; 
        row-gap: 0.8rem; 
    }
}

@media (max-width: 600px) {
    .white-stage { padding: 3rem 5%; min-height: auto; }
    .logo-text { font-size: 2.8rem; }
    .main-slogan { font-size: 3rem; }
    .expert-name { font-size: 1.1rem; }
    .quote-text, .banner-quote-text { font-size: 1.6rem; }
    .section-title { font-size: 2.2rem; }
    .page-section { padding: 5rem 5%; }
    .aquarell-wrapper { height: 45vh; }
    
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }

    .sub-footer {
        padding-bottom: 3.5rem;
    }
}