/* ===== CSS Variables ===== */
:root {
    --primary-blue: #014421;
    --light-blue: #C8D8BE;
    --medium-blue: #62A83D;
    --very-light-blue: #e4facf;
    --beige-1: #FAF6F3;
    --beige-2: #F2EEEA;
    --white: #FFFFFF;
    --red: #ff0000;
    --font-main: Arial, Helvetica, sans-serif;
    --font-alt: Verdana, Geneva, Arial, Helvetica, sans-serif;
    --sidebar-width: 220px;
    --content-width: calc(100% - (var(--sidebar-width) * 2));
}
 


/* Logo overlay */
@media screen and (min-width: 1600px){
    .nav-header #logodrinne {
        visibility: hidden;
    }
    #logooverlay {
        visibility: visible;
        display: flex;
        position: absolute;
        width: 80%;
        margin-top: 20%;
        margin-left: 48.4%;
    }
}
@media screen and (max-height:950px) {
    #logooverlay {
        visibility: hidden;
        display: none;
    }
    .nav-header #logodrinne {
        visibility: visible;
    }
}

@media screen and (max-height:820px) {
    .right-sidebar img[alt="Foto Birgit Pulz"] {
        visibility: hidden;
        display: none;
    }
}

@media screen and (max-width: 1600px){
    .nav-header #logodrinne {
        visibility: visible;
    }
    #logooverlay {
        visibility: none;
        display: none;
    }
}
    /* ===== Main Content Area ===== */

    .main-content {
        margin-left: var(--sidebar-width);
        width: var(--content-width);
        background: var(--white);
        min-height: 100vh;
        padding: 40px;
    }
/* Overlay Grundzustand */

/* ===== Reset & Base Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    font-family: var(--font-main);
    background: var(--white);
    color: #000;
    line-height: 1.6;
}

html { scroll-behavior: smooth; }

.mobile-only { display: none; }

/* ===== Layout Container ===== */
.layout-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ===== Navigation Sidebar ===== */
#navigation {
    width: var(--sidebar-width);
    height: 100vh; /* GEÄNDERT: Fest auf Bildschirmhöhe begrenzen */
    background-color: var(--light-blue);
    border-right: 2px solid var(--medium-blue);
    position: fixed;
    left: 0; top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* GEÄNDERT: Elemente starten oben, damit sie sauber scrollen */
}

.nav-header {
    padding: 24px 0 0 0;
    text-align: left;
    border-bottom: none;
}

.nav-header img {
    display: block;
    width: clamp(100px, 28vw, 160px); /* dynamisch, auch Desktop */
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 0 0 auto;
    margin-block: auto;
    
}
.nav-links a {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    /*border-bottom: 1px solid var(--very-light-blue);*/
    transition: all 0.3s ease;
    text-align: left;
}


.nav-links a:hover { background: var(--very-light-blue); color: var(--medium-blue); }

.nav-termin {
    padding: 20px;
    text-align: left;
}


/* ===== Submenu Styles ===== */
.nav-links .nav-item {
    position: relative;
}

.nav-links .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
}

.nav-links .nav-item > a::after {
    content: '›';
    font-size: 20px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.nav-links .nav-item.has-submenu:hover > a::after,
.nav-links .nav-item.has-submenu.active > a::after {
    transform: rotate(90deg);
}

/* Submenu Container */
.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: var(--very-light-blue);
    border-left: 3px solid var(--medium-blue);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.nav-item:hover .submenu,
.nav-item.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: normal;
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(98, 168, 61, 0.2);
    transition: all 0.3s ease;
}

.submenu a:hover {
    background: var(--light-blue);
    color: var(--medium-blue);
    padding-left: 25px;
}

.submenu a:last-child {
    border-bottom: none;
}

/* Mobile Submenu Styles */
@media screen and (max-width: 768px), screen and (max-height: 570px) {
    .nav-links .nav-item > a::after {
        content: '▼';
        font-size: 12px;
        transform: rotate(-90deg);
    }
    
    .nav-links .nav-item.active > a::after {
        transform: rotate(0deg);
    }
    
    .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border-left: none;
        border-top: 1px solid var(--medium-blue);
        background: rgba(200, 216, 190, 0.5);
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-item.active .submenu {
        max-height: 500px;
    }
    
    .submenu a {
        padding: 10px 20px 10px 40px;
        font-size: 13px;
    }
    
    .submenu a:hover {
        padding-left: 45px;
    }
}

/* Tablet Querformat Anpassungen */
@media screen and (min-width: 769px) and (max-height: 700px) {
    .submenu {
        min-width: 200px;
    }
    
    .submenu a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media screen and (min-width: 769px) and (max-height: 520px) {
    .submenu {
        min-width: 180px;
    }
    
    .submenu a {
        padding: 8px 14px;
        font-size: 12px;
    }
}



v



/* ===== Main Content Area ===== */
.main-content {
    margin-left: var(--sidebar-width);
    width: var(--content-width);
    background: var(--white);
    min-height: 100vh;
    padding: 40px;
}

ul {
  list-style-position: outside;
  margin-left: 0.75rem;   /* wie weit die Liste eingerückt ist */
  padding-left: 0;    /* optional */
}
li {
  padding-left: 0.5em; /* kleiner Abstand zwischen Punkt und Text */
  text-indent: 0;      /* sicherstellen, dass kein zusätzlicher Einzug kommt */
  margin-bottom: 1rem;
}
.content-inner { max-width: 800px; margin: 0 auto; }

.mindmap-container {
    max-width: 900px;
    margin: 30px auto 10px auto;
}
.mindmap-container svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}
@media screen and (max-width: 768px), screen and (max-height: 570px) {
    .mindmap-container {
        margin-top: 20px;
    }
}
/* Auf breiteren Bildschirmen darf die Mindmap über die Textspalte hinauswachsen */
@media screen and (min-width: 900px) {
    .mindmap-container {
        width: min(1250px, 94vw);
        max-width: none;
        margin-left: 50%;
        transform: translateX(-50%);
    }
}

/* ===== Mindmap Animationen ===== */

/* Linien: "Zeichnen"-Effekt beim Laden */
.mm-line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: mm-draw-line 0.6s ease forwards;
}

/* Zentrum: Einblenden + sanftes dauerhaftes Pulsieren */
.mm-hub {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation:
        mm-hub-in 0.6s ease forwards,
        mm-hub-pulse 3.2s ease-in-out 0.7s infinite;
}

/* Knoten: gestaffeltes "Aufpoppen" */
.mm-node {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: mm-node-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: transform 0.25s ease;
}

/* Hover-Effekt auf den Knoten: leichtes Abheben */
.mm-node ellipse {
    transition: stroke 0.25s ease, stroke-width 0.25s ease;
}
.mm-node:hover {
    transform: translateY(-4px);
    cursor: default;
}
.mm-node:hover ellipse {
    stroke: #62A83D;
    stroke-width: 1.8;
}

@keyframes mm-draw-line {
    to { stroke-dashoffset: 0; }
}

@keyframes mm-hub-in {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes mm-hub-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.035); }
}

@keyframes mm-node-in {
    from { opacity: 0; transform: scale(0.3); }
    to   { opacity: 1; transform: scale(1); }
}

/* Zeitversatz: Linie zuerst, danach der zugehörige Knoten */
.mm-line-1 { animation-delay: 0.30s; }
.mm-node-1 { animation-delay: 0.65s; }

.mm-line-2 { animation-delay: 0.42s; }
.mm-node-2 { animation-delay: 0.77s; }

.mm-line-3 { animation-delay: 0.54s; }
.mm-node-3 { animation-delay: 0.89s; }

.mm-line-4 { animation-delay: 0.66s; }
.mm-node-4 { animation-delay: 1.01s; }

.mm-line-5 { animation-delay: 0.78s; }
.mm-node-5 { animation-delay: 1.13s; }

.mm-line-6 { animation-delay: 0.90s; }
.mm-node-6 { animation-delay: 1.25s; }

.mm-line-7 { animation-delay: 1.02s; }
.mm-node-7 { animation-delay: 1.37s; }

.mm-line-8 { animation-delay: 1.14s; }
.mm-node-8 { animation-delay: 1.49s; }

/* Für Nutzer, die reduzierte Bewegung bevorzugen */
@media (prefers-reduced-motion: reduce) {
    .mm-line, .mm-hub, .mm-node {
        animation: none !important;
        opacity: 1;
        stroke-dashoffset: 0;
        transform: none;
    }
}

.content-inner h3 {
    color: var(--primary-blue);
    font-size: 36px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 30px;
}

.content-inner h3 span {
    font-size: 25px;
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: normal;
}

.content-inner h2 {
    color: var(--primary-blue);
    font-size: 22px;
    margin: 30px 0 15px 0;
    font-weight: normal;
}

.content-inner p { margin-bottom: 15px; line-height: 1.6; }

.content-inner a { color: var(--medium-blue); text-decoration: underline; }
.content-inner a:hover { color: var(--primary-blue); }

.red-notice {
    color: var(--red) !important;
    font-weight: bold;
    background: #ffe6e6;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--red);
    margin: 20px 0;
}

/* ===== Footer Box ===== */
.footer-box {
    margin-left: var(--sidebar-width);
    width: var(--content-width);
    background: var(--very-light-blue);
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-box a:hover {
    color: var(--medium-blue);
}

.footer-separator {
    margin: 0 15px;
    color: var(--primary-blue);
}

/* ===== Impressum und Datenschutz ====*/


/* ===== Right Sidebar ===== */
.right-sidebar {
    width: var(--sidebar-width);
    background: var(--white);
    height: 100vh; /* GEÄNDERT: Fest auf Bildschirmhöhe begrenzen */
    position: fixed;
    right: 0; top: 0;
    padding: 20px;
    border-left: 2px solid var(--light-blue);
    z-index: 50;
    font-family: var(--font-alt);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* GEÄNDERT: Für sauberes Scrollverhalten */
    gap: 15px;
    overflow-y: auto; /* NEU: Aktiviert vertikales Scrollen bei Bedarf */
}

.right-sidebar img {
    width: 100%; max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin: 10px 0 20px;
}

.right-sidebar address {
    font-style: normal;
    color: black;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: auto;
    margin-left: auto;
    padding-right: 2px;
}

.right-sidebar .imageSidebar { margin-top: auto; text-align: center; }
.right-sidebar .red { color: var(--red); font-weight: bold; font-size: 15px; }
.right-sidebar strong { color: var(--primary-blue); }

.right-sidebar a {
    font-family: var(--font-alt);
    color: var(--medium-blue);
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid var(--medium-blue);
}
.right-sidebar a:hover { color: var(--primary-blue); border-bottom: 1px solid var(--primary-blue); }

/* ===== Mobile Menu Toggle (Burger / X) ===== */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px; left: 20px;         /* fester Platz: Burger & X identisch */
    z-index: 1001;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.mobile-menu-toggle:hover { background: var(--medium-blue); transform: translateY(-1px); }
/* Zustand „offen" bekommt invertierte Farben für das X (optional) */
.mobile-menu-toggle.is-open {
    background: var(--medium-blue);
}

/* Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; }

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 100;
}
.scroll-to-top:hover {
    background: var(--medium-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* ===== Responsive Design ===== */

/* Large Desktop */
@media screen and (min-width: 1400px) {
    :root { --sidebar-width: 250px; }
    .nav-links a { font-size: 17px; padding: 18px 24px; }
    .main-content { padding: 50px; }
}

/* Tablet View */
@media screen and (max-width: 1200px) {
    :root { --sidebar-width: 180px; }
    .nav-links a { font-size: 14px; padding: 14px 16px; }
    .main-content { padding: 30px; }
    .content-inner h3 { font-size: 26px; font-weight: bold;}
    .right-sidebar { padding: 15px; }
}

/* Small Tablet */
@media screen and (max-width: 900px) {
    :root { --sidebar-width: 160px; }
    .nav-links a { font-size: 13px; padding: 12px 14px; }
    .main-content { padding: 25px; }
}

/* ==== Mobile Navigation (≤768px ODER ≤570px Höhe) – höhenadaptiv, mit Scroll ==== */
@media screen and (max-width: 768px), screen and (max-height: 570px) {
  .mobile-only { display: flex; }
  .mobile-menu-toggle { display: block; }

  #navigation {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 280px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    z-index: 1000;

    height: 100vh; height: 100dvh;
    display: flex; flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto; /* GEÄNDERT: Scrollen aktivieren */
    overflow-x: hidden;
  }
  #navigation.mobile-open { transform: translateX(0); }

  /* Alle Größen skalieren stufenlos mit der Viewport-Höhe (vh),
     dadurch keine Sprünge zwischen Breakpoints - funktioniert bei jeder Höhe. */
  .nav-header { flex: 0 0 auto; padding: clamp(4px, 2vh, 12px) 0; text-align: center; }
  .nav-header img {
    width: clamp(44px, 13vh, 90px);
    height: auto; margin: 0 auto;
  }

  .nav-links {
    flex: 0 0 auto; margin-block: 0;
    border-top: 1px solid var(--very-light-blue);
    overflow: visible; /* GEÄNDERT: Inhalt bricht für Scrollbar nicht ab */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* GEÄNDERT: Startet oben für sauberes Scrollverhalten */
  }
  .nav-links a {
    padding: clamp(3px, 1.6vh, 14px) 16px;
    font-size: clamp(11px, 2vh, 16px);
    line-height: 1.15;
  }

  #navigation .nav-termin {
    flex: 0 0 auto;
    padding: clamp(3px, 1.2vh, 8px) 12px;
    box-shadow: 0 -6px 8px -6px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
    margin-top: auto !important; /* GEÄNDERT: Drückt den Button auch mobil aktiv ganz nach unten */
  }
  #navigation .nav-termin img {
    max-width: clamp(90px, 22vh, 150px) !important;
    margin: 0 auto;
    display: block;
  }

  .right-sidebar { display: none; }
  .main-content { margin-left: 0; width: 100%; padding: 80px 20px 40px 20px; }
  
  /* Footer für Mobile */
  .footer-box {
    margin-left: 0;
    width: 100%;
    padding: 15px;
    font-size: 13px;
  }
  
  .footer-separator {
    margin: 0 10px;
  }
}

/* ==== Tablet Querformat (≥769px aber geringe Höhe) – gleiche stufenlose Logik ==== */
@media screen and (min-width: 769px) and (min-height: 571px) and (max-height: 900px) {
  #navigation {
    height: 100vh; height: 100dvh;
    display: flex; flex-direction: column;
    overflow:hidden;
    justify-content: space-between;
  }
  .nav-header img { width: clamp(70px, 14vh, 140px); }
  .nav-links a { padding: clamp(4px, 1.7vh, 14px) 16px; font-size: clamp(12px, 2vh, 16px); }
  .nav-termin { padding: clamp(4px, 1.4vh, 12px); }
}

/* Very Small Mobile */
@media screen and (max-width: 480px) {
  .main-content { padding: 80px 15px 40px 15px; }
  .content-inner h3 { font-size: 20px; }
  .content-inner h3 span { font-size: 14px; }
  .content-inner h2 { font-size: 18px; }
  .content-inner p { font-size: 14px; }
  .scroll-to-top { width: 45px; height: 45px; bottom: 20px; right: 20px; font-size: 18px; }
  .mobile-menu-toggle { top: 15px; left: 15px; padding: 10px 12px; font-size: 16px; }
  #navigation { width: 260px; }
  
  .footer-box {
    font-size: 12px;
    padding: 12px;
  }
  
  .footer-separator {
    margin: 0 8px;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .main-content { padding: 70px 10px 30px 10px; }
  .content-inner h3 { font-size: 18px; margin-bottom: 20px; }
  .red-notice { padding: 12px; font-size: 14px; }
  #navigation { width: 240px; }
  .nav-header img { width: clamp(72px, 16vh, 100px); }
  
  .footer-box {
    font-size: 11px;
    padding: 10px;
  }
}



/* Schwerpunkte website */


/* Accordion Styles */
.dropdown-item {
    margin: 15px 0;
}

.dropdown-header {
    padding: 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: all 0.3s ease;
}

.dropdown-header:hover {
    transform: translateX(3px);
}

.dropdown-header:hover .dropdown-title {
    color: var(--medium-blue);
}

.dropdown-header:hover .dropdown-arrow {
    border-color: var(--medium-blue);
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    border-bottom: 2.5px solid var(--primary-blue);
    border-right: 2.5px solid var(--primary-blue);
    transform: rotate(45deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
    flex-shrink: 0;
    margin-top: -3px;
}

.dropdown-header.active .dropdown-arrow {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.dropdown-title {
    color: var(--primary-blue);
    font-size: 18px;
    margin: 0;
    transition: color 0.3s ease;
}

.dropdown-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-left: 25px;
    padding-top: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease,
                padding-top 0.5s ease;
}

.dropdown-content.active {
    max-height: 2000px;
    opacity: 1;
    padding-top: 10px;
}

.dropdown-text {
    line-height: 1.6;
    color: #333;
}

.dropdown-text p {
    margin-bottom: 10px;
}


/* Einzelne Sachen*/
#HZertifikat {
   max-width:80px;margin-left:-50%;margin-top: 200px; 
}
@media screen and (max-width:850px){
   #HZertifikat {
        display: none;
    } 
}
/* ===== Logo neben der Überschrift (Mobile) ===== */
/* ===== Mobile Blur Header & Logo ===== */

/* Grundzustand: Auf Desktop verstecken */
.mobile-blur-header {
    display: none;
}

@media screen and (max-width: 768px), screen and (max-height: 570px){
    .mobile-blur-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px; /* Höhe des Bereichs, der unscharf sein soll */
        z-index: 1000; /* Unter den Button (1001), aber über dem Content */
        
        /* Der Unschärfe-Effekt (Frosted Glass) */
        background: rgba(255, 255, 255, 0.7); /* Leicht transparentes Weiß */
        backdrop-filter: blur(10px);          /* Macht den Text darunter unscharf */
        -webkit-backdrop-filter: blur(10px);   /* Support für Safari */
        
        /* Der Gradient nach unten hin (maskiert die Unschärfe) */
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }

    /* Das Logo im Blur-Header positionieren */
    .mobile-logo-top {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .mobile-logo-top img {
        height: 40px; /* Größe des Logos */
        width: auto;
        display: block;
    }

    /* WICHTIG: Den Menü-Button sicherstellen */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001; /* Muss ÜBER dem Blur-Header liegen */
    }

    /* Den Hauptinhalt etwas weiter nach unten schieben, 
       damit die Überschrift nicht direkt hinter dem Blur startet */
    .main-content {
        padding-top: 100px !important;
    }
}
/* Standardmäßig auf großen Bildschirmen ausblenden */
.mobile-logo-inline {
    display: none; 
}

/* Ansicht für Handys und kleine Tablets */
@media screen and (max-width: 768px), screen and (max-height: 570px) {
    .mobile-header-flex {
        display: flex;
        justify-content: space-between; /* Schiebt den Text nach links, das Logo nach rechts */
        align-items: flex-start;        /* Bündig an der Oberkante ausrichten */
        gap: 15px;                      /* Sorgt für etwas Abstand, falls der Text lang wird */
    }

    .mobile-logo-inline {
        display: block;
        width: 70px;     /* Passe diese Zahl an, um das Logo größer/kleiner zu machen */
        height: auto;
        flex-shrink: 0;  /* WICHTIG: Verhindert, dass das Logo vom Text gequetscht wird */
        margin-top: 5px; /* Schiebt das Logo minimal nach unten, damit es besser zur Schriftlinie passt */
    }
}
/*responsive height*/
.nav-termin {
    margin-top: auto; /* Schiebt den Button nach unten, solange Platz ist */
    padding: 20px;
    text-align: center;
}

.right-sidebar .imageSidebar { 
    margin-top: auto; /* Schiebt das Logo nach unten, solange Platz ist */
    text-align: center; 
}