/* ==========================================================================
   1. GLOBALE VARIABLEN & PRELOADER
   ========================================================================== */
:root {
    --hauptgruen: #465500;
    --limette: #C8E285;
    --text-dunkel: #333333;
}

/* Preloader dauerhaft ausschalten */
.loader-wrapper { 
    display: none !important; 
}


/* ==========================================================================
   2. DESKTOP-HEADER & MENÜ (PERMANENT FIXED)
   ========================================================================== */
/* Fixiert den gesamten Header-Bereich permanent oben */
header.top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1) !important;
    padding: 10px 0 !important;
}

/* Hebt störende Scroll-Änderungen (Sticky-Effekte) des Templates auf */
#sticky-header.sticky-nav {
    position: static !important;
    max-width: none !important;
    width: auto !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Header-Hintergrund weiß halten und Abstände bereinigen */
.top, #sticky-header, .header-menu, .mobile-menu-area {
    background-color: #ffffff !important;
    margin-bottom: 0px !important;
    padding: 10px 0 !important;
}

/* Bringt Logo-Layout und Menü auf eine Linie */
.top .container .top-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    text-align: left !important;
}

/* Positioniert den Logo-Bereich ganz links */
.col-lg-2 {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100% !important;
}

/* Menü-Schrift lesbar machen */
.header-menu ul li a, .itsoft_menu ul li a {
    color: var(--text-dunkel) !important;
    margin: 20px 20px 0 !important;
}

/* Hover-Effekt im Menü */
.header-menu ul li a:hover, .itsoft_menu ul li a:hover {
    color: var(--hauptgruen) !important;
}

/* Verhindert Zeilenumbruch der Menüpunkte beim Scrollen */
.header-menu ul {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.header-menu ul li {
    white-space: nowrap !important;
}

/* Responsive Logo-Größen */
.header-logo img {
    filter: none !important; 
    width: auto !important; 
    max-height: 95px !important; 
    height: auto !important;
}

@media (max-width: 767px) {
    .header-logo img {
        max-height: 45px !important; 
    }
}


/* ==========================================================================
   3. HERO- / SLIDER-BEREICH (WALD-HINTERGRUND)
   ========================================================================== */
/* Text über dem Wald für perfekten Kontrast */
.slider-title h1 {
    color: #ffffff !important;
}

/* Das kleine M und Multilen in Limette */
.slider-title h4 span, .slider-title h4 {
    color: var(--limette) !important;
}

/* Button im Wald (Hauptgrün mit weißer Schrift) */
.slider-button a {
    background-color: var(--hauptgruen) !important;
    color: #ffffff !important;
    border: none !important;
}

.slider-button a:hover {
    background-color: var(--limette) !important;
    color: var(--text-dunkel) !important;
}

/* Spezielle Anpassung NUR für Unterseiten (Baum abschalten) */
body:not(.home) .slider-area {
    background-image: none !important;
    background-color: #F3F8E9 !important;
    height: 200px !important;
    min-height: 200px !important;
}

body:not(.home) .slider-title h1, 
body:not(.home) .slider-title h4 {
    color: var(--text-dunkel) !important;
}


/* ==========================================================================
   4. MOBILE ANSICHT (SMARTPHONES & TABLETS BIS 991px)
   ========================================================================== */
@media (max-width: 991px) {
    /* Blendat Desktop-Menü aus */
    header.top {
        display: none !important; 
    }

    /* Mobilen Balken weiß färben */
    .mean-container .mean-bar {
        background: #ffffff !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
        min-height: 60px !important;
        padding: 0 !important;
        position: relative !important;
    }

    /* Blendet fehlerhaften/weißen Text des Plugins komplett aus */
    .mean-container .mean-bar > a:not(.meanmenu-reveal),
    .mean-container .mean-bar h2 {
        display: none !important;
    }

    /* Burger-Menü (die drei Striche) nach rechts zwingen */
    .mean-container a.meanmenu-reveal {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        left: auto !important;
        margin: 0 !important;
    }

    /* Macht die drei Striche schwarz */
    .mean-container a.meanmenu-reveal span {
        background: #333333 !important;
    }

    /* Erzeugt Branding "ELKE BÜRKLE" links im weißen Balken */
    .mean-container .mean-bar::before {
        content: "ELKE BÜRKLE" !important;
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #4e5902 !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        z-index: 99999 !important;
        font-family: "Times New Roman", Times, serif !important;
        transition: opacity 0.2s ease;
    }

    /* Blendet Text aus, sobald das Menü geöffnet wird */
    .mean-container .mean-bar:has(a.meanclose)::before {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Korrektur für ausgeklappte mobile Menüpunkte */
    .mean-container .mean-nav ul li a {
        color: #333333 !important;
        background: #ffffff !important;
        position: relative !important;
        z-index: 1 !important;
    }
}


/* ==========================================================================
   5. INHALTS-SEKTIONEN & SEKTIONS-ABSTÄNDE
   ========================================================================== */
/* Abstand zwischen Director- und Team-Sektion komplett minimieren */
.Director-section {
    padding-bottom: 0px !important;
}

.team-area {
    padding-top: 10px !important;
    margin-top: -30px !important;
}

/* Template-Standardlinien im oberen Bereich abschalten */
.Director-section h2 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 15px !important;
}

.Director-section h2::after,
.Director-section h2::before {
    display: none !important;
    content: none !important;
}
/* ==========================================================================
   6. ABSOLUTE KONTROLLE ÜBER DIE TRENNLINIEN (ORIGINALGRÖSSE & RATSCHSCHARF)
   ========================================================================== */

/* Hält den Bild-Container perfekt zentriert */
.section-thumb, 
.director-title-divider {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin: 20px auto !important;
    padding: 0 !important;
    clear: both !important;
    float: none !important;
}

/* Zwingt die Grafik auf die echten Photoshop-Maße (127px x 21px) */
.section-thumb img, 
.director-title-divider img {
    display: inline-block !important;
    width: 127px !important;        /* Exakte Breite laut Photoshop-Bildgröße */
    height: 21px !important;        /* Exakte Höhe laut Photoshop-Bildgröße */
    min-width: 127px !important;
    min-height: 21px !important;
    max-width: 127px !important;
    max-height: 21px !important;
    margin: 0 auto !important;
    float: none !important;
    transform: none !important;
    
    /* Schaltet den Browser-Weichzeichner ab und erzwingt originale Schärfe */
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
}

/* ==========================================================================
   7. DEN ASYMMETRISCHEN VERSATZ DER MITTLEREN ROW AUSHEBELN
   ========================================================================== */
.Director-section .row.come,
.Director-section .director-content,
.Director-section .Director-title {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    left: 0 !important;
    right: 0 !important;
}


/* ==========================================================================
   8. EB-CUSTOM-FOOTER – HELLGRÜN MIT PUSTEBLUMEN-BILD
   
   Technik: Das Bild liegt als Hintergrund auf schwarzem Grund.
   Ein ::before-Pseudo-Element legt sich als Hellgrün-Overlay darüber
   (mix-blend-mode: multiply auf dem Overlay selbst).
   Ergebnis: Weiße/helle Bildstellen × Grün = leuchtendes Hellgrün ✓
             Graue Bildstellen × Grün = grünlich (kein schmutziges Olivgrau) ✓
             Die Pusteblume bleibt als helle Struktur sichtbar ✓
   ========================================================================== */

.footer-area#eb-custom-footer {
    position: relative !important;
    background-color: #aac81c !important;
    background-image: url("../assets/images/footer-bg.jpg") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    /* KEIN background-blend-mode – das war der Fehler der früheren Versionen */
    padding: 60px 0 !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* Grün-Overlay als eigener Layer über dem Bild.
   mix-blend-mode: screen + helle Farbe = helles Gelbgrün wie Bild 1,
   aber die Pusteblumen-Textur des Bildes bleibt sichtbar. */
.footer-area#eb-custom-footer::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background-color: transparent !important;
    mix-blend-mode: normal !important;
    display: none !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

/* Inhalt über dem Overlay */
.footer-area#eb-custom-footer > * {
    position: relative !important;
    z-index: 1 !important;
}

/* Texte und Links: weiß, linksbündig */
.footer-area#eb-custom-footer h3,
.footer-area#eb-custom-footer p,
.footer-area#eb-custom-footer a,
.footer-area#eb-custom-footer li {
    color: #ffffff !important;
    text-align: left !important;
}

.footer-area#eb-custom-footer h3 {
    font-family: 'Josefin Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 16px !important;
}

.footer-area#eb-custom-footer a:hover {
    color: #f0f0d0 !important;
    text-decoration: underline !important;
}

/* Listen ohne Bullets und Einzug */
.footer-area#eb-custom-footer ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

.footer-area#eb-custom-footer li {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 6px !important;
}

.footer-area#eb-custom-footer li::before {
    content: none !important;
    display: none !important;
}

.footer-area#eb-custom-footer .footer-widget {
    margin-bottom: 30px !important;
}


/* ==========================================================================
   9. COPYRIGHT-BEREICH
   ========================================================================== */
.copyright-area {
    background-color: #90ae00 !important;
    padding: 18px 0 !important;
}

.copyright-area .copyright-title p {
    color: #ffffff !important;
    text-align: center !important;
    margin: 0 !important;
    font-size: 14px !important;
}

/* ==========================================================================
   10. Impressum Textbereich zentriert
   ========================================================================== */
.about-area .col-lg-12 > div[style] {
  text-align: center;
}

/* ==========================================================================
   11. Link-Farbe: Markengrün statt Blau
   ========================================================================== */
a, a:visited {
  color: #90ae00!important;
}
a:hover, a:focus {
  color: #485702  !important;
}

/* ==========================================================================
   12. Breadcrumb-Bild Impressum und Text
   ========================================================================== */
.page-impressum .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-impressum.jpg');
}
.page-impressum .breadcumb-title,
.page-impressum .breadcumb-content-text {
  display: none;
}

/* ==========================================================================
   13. Breadcrumb-Bild Datenschutz und Text
   ========================================================================== */
.page-datenschutz .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-datenschutz.jpg');
}
.page-datenschutz .breadcumb-title,
.page-datenschutz .breadcumb-content-text {
  display: none;
}

/* ==========================================================================
   14. Breadcrumb-Bild Meine-Kurse und Text
   ========================================================================== */
.page-meine-kurse .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-meine-kurse.jpg');
}
.page-meine-kurse .breadcumb-title,
.page-meine-kurse .breadcumb-content-text {
  display: none;
}

/* ==========================================================================
   15. Breadcrumb-Bild Meine-Coachings und Text
   ========================================================================== */
.page-meine-coachings .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-meine-coachings.jpg');
}
.page-meine-coachings .breadcumb-title,
.page-meine-coachings .breadcumb-content-text {
  display: none;
}

/* ==========================================================================
   16. Breadcrumb-Bild Über-mich und Text
   ========================================================================== */
.page-ueber-mich .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-ueber-mich.jpg');
}
.page-ueber-mich .breadcumb-title,
.page-ueber-mich .breadcumb-content-text {
  display: none;
}

/* ==========================================================================
   17. Breadcrumb-Bild Kontakt und Text
   ========================================================================== */
.page-kontakt .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-kontakt.jpg');
}
.page-kontakt .breadcumb-title,
.page-kontakt .breadcumb-content-text {
  display: none;
}

/* ==========================================================================
   18. Slider Hero-Bereich
   ========================================================================== */

/* Dunkles Overlay nur innerhalb des Sliders */
.slider-area.d-flex {
    position: relative;
    overflow: hidden;
}

.slider-area.d-flex::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.slider-area.d-flex .container {
    position: relative;
    z-index: 2;
}

/* Slider Button */
.slider-button a {
    background-color: #90ae00 !important;
    border-color: #90ae00 !important;
    text-transform: none !important;
    color: #000000 !important;
}

.slider-button a:hover {
    background-color: #90ae00 !important;
    border-color: #90ae00 !important;
    color: #ffffff !important;
}

/* Slider Titel */
.slider-title h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    color: #ffffff !important;
    text-shadow: none !important;
    background-color: transparent !important;
    padding: 0 !important;
}

/* Trennstrich ausblenden */
.slider-area .slider-content .slider-title::before {
    display: none !important;
}

/* ==========================================================================
   19. Startseite - Meine Kurse
   ========================================================================== */

/* Titel-Zeile: alle Titel unten ausgerichtet */
.kurs-titel-zeile {
    align-items: flex-start;
}

.kurs-titel {
    padding: 0 0.5rem 0.8rem;
}

.kurs-titel h3 {
    margin: 0;
}

/* Inhalt-Zeile: Bilder bündig oben */
.kurs-inhalt-zeile {
    align-items: flex-start;
}

.kurs-inhalt {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Feste Bildhöhe */
.kurs-inhalt .team-thumb {
    height: 220px;
    overflow: hidden;
}

.kurs-inhalt .team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text und Button */
.kurs-inhalt .team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: white;
}

.kurs-inhalt .team-content a {
    display: inline-block;
    margin-top: auto;
    padding: 0.4em 1.2em;
    background: #90ae00;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    align-self: flex-start;
}

.kurs-inhalt .team-content a:hover {
    background: #90ae00 !important;
    color: #fff !important;
}

/* Fix: globale a-Farbe überschreibt Button-Schrift – explizit weiß erzwingen */
.kurs-inhalt .team-content a,
.kurs-inhalt .team-content a:visited {
    color: #ffffff !important;
}

/* Hover-Effekt vom Template deaktivieren */
.team-area .team-single-box:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
  20. Aktiver Menüpunkt – farbliche Hervorhebung
   ========================================================================== */
.page-kontakt .header-menu ul li a[href="kontakt.html"],
.page-meine-coachings .header-menu ul li a[href="meine-coachings.html"],
.page-meine-kurse .header-menu ul li a[href="meine-kurse.html"],
.page-ueber-mich .header-menu ul li a[href="ueber-mich.html"],
.home .header-menu ul li a[href="index.html"] {
  color: #90ae00 !important;
}

/* ==========================================================================
   21. ÜBER-MICH-SEITE – SPALTEN-ÜBERSCHRIFTEN LINKSBÜNDIG
   Klasse eb-left auf Director-title erzwingt Linksbündigkeit
   und das leichte font-weight (400) wie bei der zentralen Director-Überschrift
   ========================================================================== */
.Director-title.eb-left,
.Director-title.eb-left h2 {
    text-align: left !important;
    margin-left: 0 !important;
    font-weight: 400 !important;
}


/* ==========================================================================
   22. ÜBER-MICH-SEITE – LAYOUT & KOMPONENTEN
   ========================================================================== */

/* Hauptzeile: Abstand nach unten */
.eb-ueber-row {
    margin-bottom: 50px;
}

/* Linke Spalte: Innenabstand rechts (nur ab Desktop) */
.eb-col-left {
    padding-right: 50px;
}

/* Signatur unter dem Fließtext */
.eb-signatur {
    margin-top: 24px;
}

/* Qualifikationsliste */
.eb-quali-liste {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 40px !important;
}

.eb-quali-liste li {
    padding: 7px 0 !important;
    border-bottom: 1px solid #eee !important;
    list-style: none !important;
}

.eb-quali-liste li.eb-last {
    border-bottom: none !important;
}

/* Zitat-Block */
.eb-zitat {
    border-left: 3px solid #90ae00 !important;
    padding-left: 16px !important;
    margin: 0 !important;
    color: #444 !important;
}

.eb-zitat p {
    font-style: italic !important;
    margin-bottom: 8px !important;
}

.eb-zitat footer {
    font-size: 0.9em !important;
    color: #666 !important;
}

/* Responsive: Spalten untereinander auf kleinen Screens */
@media (max-width: 991px) {
    .eb-col-left {
        padding-right: 15px;  /* Bootstrap-Standard wiederherstellen */
    }
    .eb-ueber-row {
        margin-bottom: 30px;
    }
}
/* ==========================================================================
   23. KUNDENSTIMMEN
   ========================================================================== */
.eb-kundenstimme {
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 30px;
}

.eb-kunde-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #90ae00;
}

.eb-kunde-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-kunde-text p {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.eb-kunde-text span {
    font-size: 0.9em;
    color: #90ae00;
    font-weight: 600;
}
/* ============================================================
   Sektion 24 – Kurs-Reihen (meine-kurse.html)
   ============================================================ */
 
.eb-kurs-row {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
    align-items: flex-start;
}
 
.eb-kurs-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
 
.eb-kurs-bild {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}
 
.eb-kurs-beschreibung {
    padding: 0 20px;
}
 
.eb-kurs-beschreibung h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--hauptgruen);
    margin-bottom: 12px;
    line-height: 1.4;
}
 
.eb-kurs-beschreibung p {
    color: var(--text-dunkel);
    font-size: 15px;
    line-height: 1.7;
}
 
.eb-kurs-anmeldung {
    padding: 20px 24px;
    background-color: #f7f9f2;
    border-left: 3px solid #90ae00;
    border-radius: 4px;
}
 
.eb-kurs-anmeldung h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--hauptgruen);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.eb-kurs-anmeldung p {
    font-size: 15px;
    color: var(--text-dunkel);
    margin-bottom: 8px;
}
 
.eb-kurs-anmeldung p i {
    color: #90ae00;
    width: 20px;
    margin-right: 6px;
}
 
.eb-kurs-anmeldung a {
    color: var(--text-dunkel);
    text-decoration: none;
}
 
.eb-kurs-anmeldung a:hover {
    color: #90ae00;
}

 .service-area[id] {
    scroll-margin-top: 90px;
}
 
/* Mobile: Abstände zwischen den 3 Spalten */
@media (max-width: 991px) {
    .eb-kurs-bild {
        margin-bottom: 20px;
        height: 200px;
    }
    .eb-kurs-beschreibung {
        padding: 0 0 20px 0;
    }
}
/* ============================================================
   Sektion 25 – Brückensätze (meine-coachings.html)
   ============================================================ */
   /* Sektion 25 – Coaching-Seite Brückensätze */
.eb-bridge-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--hauptgruen) !important;
    letter-spacing: 0.03em;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid #C8E285;
    margin-bottom: 30px !important;
}

/* ============================================================
   Sektion 26 – Kontakt-Aufforderung (meine-coachings.html)
   ============================================================ */
.eb-kontakt-cta {
    padding: 50px 0 30px 0;
    text-align: center;
}

.eb-kontakt-cta p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px auto;
}

.eb-kontakt-cta .btn {
    background-color: #90ae00;
    border-color: #90ae00;
    color: #333333;
    padding: 12px 30px;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.eb-kontakt-cta .btn:hover {
    background-color: #90ae00;
    border-color: #90ae00;
    color: #ffffff !important;
}

/* ============================================================
   Sektion 27 – Cookie-Banner
   ============================================================ */
#eb-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--hauptgruen);
    color: #ffffff;
    padding: 15px 30px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    font-size: 0.95rem;
}

#eb-cookie-banner p {
    margin: 0;
    color: #ffffff;
}

#eb-cookie-banner a {
    color: #ffffff;
    text-decoration: underline;
}

#eb-cookie-banner button {
    background-color: #ffffff;
    color: var(--hauptgruen);
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

#eb-cookie-banner button:hover {
    background-color: #C8E285;
}
/* ============================================================
   Sektion 28 – Breadcrumb-Bild Meine-Techniken
   ============================================================ */
.page-meine-techniken .breadcumb-area {
  background-image: url('../assets/images/breadcrumb-meine-techniken.jpg');
}
.page-meine-techniken .breadcumb-title,
.page-meine-techniken .breadcumb-content-text {
  display: none;
}

/* ============================================================
   Sektion 29 – Aktiver Menüpunkt Meine-Techniken
   ============================================================ */
.page-meine-techniken .header-menu ul li a[href="meine-techniken.html"] {
  color: #90ae00 !important;
}

/* ============================================================
   Sektion 30 – Weiterlesen-Akkordeon (meine-techniken.html)
   ============================================================ */
.eb-weiterlesen-content {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.eb-weiterlesen-content ul {
    display: inline-block;
    text-align: left;
    padding-left: 18px;
    margin-bottom: 8px;
}

.eb-weiterlesen-content ul li {
    margin-bottom: 4px;
}

.eb-weiterlesen-btn {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: #90ae00 !important;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.eb-weiterlesen-btn:hover {
    color: var(--hauptgruen) !important;
    text-decoration: underline;
}

.eb-weiterlesen-btn .eb-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.eb-weiterlesen-btn.open .eb-arrow {
    transform: rotate(180deg);
}
/* Verhindert, dass Kästchen beim Anspringen unter dem Header verschwinden */
[id] {
    scroll-margin-top: 110px;
}
.eb-weiterlesen-btn:focus,
.eb-weiterlesen-btn:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}
/* ============================================================
   Sektion 31 – Kurs-Anmeldung: Icon bleibt oben beim Umbrechen
   ============================================================ */
.eb-kurs-anmeldung p i {
    vertical-align: top;
    margin-top: 3px;  /* optische Feinabstimmung */
}

.eb-kurs-anmeldung p span {
    display: inline-block;
    vertical-align: top;
}
/* ============================================================
   Sektion 32 – Template-Rosa-Hintergründe durch zartes Grün ersetzen
   Das Original-Template setzt auf manchen Sektionen einen
   rosafarbenen Background. Hier wird alles auf ein sehr helles,
   zartes Grün umgestellt (#f3f8ea).
   ============================================================ */
.testimonial-area,
.pricing-area,
.service-area,
.Director-section,
.team-area,
.about-area,
.counter-area,
.blog-area,
.choose-area,
.faq-area,
.breadcumb-area {
    background-color: #f7faf2 !important;
}

/* Sektionen die bewusst weiß bleiben sollen: slider-area, footer-area, copyright-area, mobile-menu-area, header.top – kein Override, bleiben wie im Theme definiert */

/* ============================================================
   Sektion 33 – Intro-Button (Director-Section)
   ============================================================ */
.eb-intro-buttons {
    margin: 20px 0 24px;
    text-align: center;
}

.eb-intro-btn {
    display: inline-block;
    padding: 0.4em 1.2em;
    background: #90ae00;
    color: #ffffff !important;
    border-radius: 4px;
    text-decoration: none !important;
}

.eb-intro-btn:hover,
.eb-intro-btn:visited,
.eb-intro-btn:focus {
    background: #90ae00 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ============================================================
   Sektion 34 – Methoden-Karten (meine-coachings.html)
   Gleichmäßige Höhe, kein Überlauf durch Nachfolgetext
   ============================================================ */
.eb-methoden-row {
    align-items: stretch;
}

.eb-methoden-row .col-lg-4 {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.eb-methoden-row .single-service-box {
    flex: 1;
    overflow: visible;
    position: relative;
}

/* ============================================================
   Sektion 35 – Diskretion-Text unter Methoden-Karten
   ============================================================ */
.eb-diskretion {
    font-style: italic;
    color: #555;
    max-width: 820px;
    margin: 20px auto 40px auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   Sektion 36 – Kontakt-CTA Button: weiße Schrift erzwingen
   ============================================================ */
.eb-kontakt-cta .btn,
.eb-kontakt-cta .btn:visited,
.eb-kontakt-cta .btn:hover,
.eb-kontakt-cta .btn:focus {
    color: #ffffff !important;
    background-color: #90ae00 !important;
    border-color: #90ae00 !important;
}

/* ============================================================
   Sektion 37 – Zitat-Box eingebettet (meine-coachings.html)
   Grün hinterlegter Abschlussblock der Wirkung-Sektion
   ============================================================ */
.eb-zitat-eingebettet {
    background-color: #f0f5e4;
    border-left: 4px solid #90ae00;
    border-radius: 4px;
    padding: 28px 36px;
    margin: 10px 0 0 0;
}

.eb-zitat-eingebettet p {
    font-style: italic;
    font-size: 1.05rem;
    color: #465500;
    margin-bottom: 10px;
    line-height: 1.8;
}

.eb-zitat-eingebettet footer {
    font-size: 0.9em;
    color: #666;
}

/* ============================================================
   Sektion 38 – Zitat-Zeile Abstand
   ============================================================ */
.eb-zitat-row {
    padding-bottom: 40px;
}

/* ============================================================
   Sektion 39 – Häkchen-Icons in eb-quali-liste
   ============================================================ */
.eb-quali-liste .eb-check-icon {
    color: #90ae00;
    margin-right: 10px;
}

/* ============================================================
   Sektion 40 – Trennlinie vor Kontakt-CTA
   ============================================================ */
.eb-cta-divider {
    text-align: center;
    margin-bottom: 10px;
}

/* ============================================================
   Sektion 41 – Reduzierter Abstand oberhalb "Was entsteht"
   (meine-coachings.html)
   ============================================================ */
.eb-wirkung-area {
    padding-top: 30px !important;
}

/* ============================================================
   Sektion 42 – Profilfoto Über-mich-Seite (responsiv)
   ============================================================ */
.eb-profilfoto {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ============================================================
   Sektion 36 – SVG-Icons in Techniken-Kästchen
   ============================================================ */
.service-ico svg {
    width: 55px;
    height: 55px;
}

/* ============================================================
   Sektion 43 – Techniken-Seite: Abstand zwischen Kästchen-Reihen
   erzwingen (Fix für fehlenden Zeilenabstand auf Laptops/kleinere
   Desktop-Breiten, z.B. wenn .col-lg-4 auf .col-md-6 umbricht)
   ============================================================ */
.service-area .row > [class*="col-"] {
    margin-bottom: 30px;
}

.service-area .single-service-box {
    height: 100%;
}

/* ============================================================
   Sektion 37 – Aufzählungstexte in Techniken-Kästchen
   ============================================================ */
.service-title ul li {
    font-size: 1rem;
}

/* ============================================================
   Sektion 38 – Kontakt-Seite Layout
   ============================================================ */
.eb-kontakt-spalten {
    margin-top: 40px;
}

.eb-kontakt-foto-col {
    margin-bottom: 40px;
}

.eb-kontakt-foto {
    width: 100%;
    border-radius: 4px;
}

.eb-kontakt-text-col {
    padding-left: 40px;
}

.eb-kontakt-adresse-header {
    margin-top: 60px;
}

.eb-kontakt-adresse-block {
    line-height: 1.9;
    margin-top: 20px;
}

.eb-kontakt-tel-mail {
    margin-top: 16px;
}

.eb-kontakt-hinweis {
    margin-top: 16px;
    font-style: italic;
    color: #666;
}

/* ============================================================
   Sektion 46 – Rechtstexte (impressum.html, datenschutz.html)
   ============================================================ */
.eb-rechtstext {
    padding: 20px 0 60px 0;
    color: #444;
    line-height: 1.8;
    text-align: center;
}

.eb-rechtstext-stand {
    color: #666;
    font-size: 13px;
}
