/* DESKTOP Navigation */
.cd-navigation-bar {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000;
}

/* MOBILE Navigation */
.cd-mobile-menu-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background-color: #000;
}

/* Seiteninhalt nach unten schieben */
body {
    padding-top: 80px;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }
}


