/*
    Theme Name: wordpress4you
    Description: theme by Markus Müllenborn-Pitzen ehemals entwickelt für Pitzborn IT
    Version: 1.0
*/

/* Farben Theme && Font */
:root {
    --red: #D30132;

}

@font-face {
    font-family: DroidSans;
    src: url('fonts/DroidSans.ttf');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: DroidSans;
    font-size: 100%;
    color: #444;
    padding-top: 80px;
}

.header-fixed-wrapper {
    width: 100%;
    z-index: 1030;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.nav-beratungsstelle-text div {
    line-height: 1.2;
    font-weight: 600;
}

/* Navbar relativ, damit das Panel sich daran orientiert */
.Navigation {
    position: relative;
}

/* Overlay-Bereich des ausgeklappten Menüs */
#collapsibleNavbar {
    position: absolute;
    top: 100%;        /* direkt unter der Navbar */
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1010;

    padding: 40px 0 60px;
}

/* Menü-Liste: vertikal, zentriert, große Schrift */
#collapsibleNavbar .main-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal zentriert */
    text-align: center;
    margin: 0;
    padding: 0;
}

#collapsibleNavbar .main-menu > li {
    list-style: none;
    margin: 8px 0;
}

/* Links wie im Screenshot: groß, rot, uppercase */
#collapsibleNavbar .main-menu > li > a {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #e0003a;
    text-decoration: none;
    padding: 4px 0;
}

/* Hover-Effekt und aktiver Menüpunkt mit Unterstreichung */
#collapsibleNavbar .main-menu > li > a:hover {
    text-decoration: none;
    border-bottom: 2px solid #e0003a;
}

#collapsibleNavbar .main-menu > li.current-menu-item > a,
#collapsibleNavbar .main-menu > li.current_page_item > a {
    border-bottom: 2px solid #e0003a;
}

/* Auf größeren Screens kann die Schrift noch etwas größer sein */
@media (min-width: 992px) {
    #collapsibleNavbar .main-menu > li > a {
        font-size: 24px;
    }
}

.header-search-panel {
    position: absolute;        /* direkt unter der Navbar */
    right: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;

    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 1050;

    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    min-width: 260px;
}

.header-search-panel.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.searchicon {
    width: 32px;
    height: auto;
    display: block;
    cursor: pointer;
}


.container-fmiddle {
    max-width: 650px;
    margin: 0 auto;
}

.footer-upper, .footmiddle {
    background: #444;
    color: white;
}

.linie {
    height: 1px;
    background: #dddddd;
    margin: 20px 0;
}

.footmiddle a,
.footerunder a {
    color: white;
    text-decoration: none;
    margin-bottom: 6px;
    background: #444;
}

.footmiddle a:hover,
.footerunder a:hover {
    text-decoration: underline;
}

.footerunder {
    background: #444;
}

.footerunder a {
    color: white;
}

.footer-upper .footer-upper-hdl {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.copyfooter {
    background: #444;
}
