.navbar {
    position: fixed; /* Bleibt fixiert */
    top: 0; /* Am oberen Bildschirmrand */
    left: 0; /* Ganz links */
    width: 100%; /* Breite über den gesamten Bildschirm */
    z-index: 1000; /* Sicherstellen, dass es über anderen Elementen liegt */
}

/* Füge einen Puffer hinzu, um den Inhalt nicht hinter der Navbar zu verstecken */
body {
    padding-top: 4rem; /* Die Höhe der Navbar (anpassen je nach Höhe der Nav) */
}

.navbar-item { /*initial alle gleich*/
    background-color: hsl(0, 0%, 14%); /* oder eine gewünschte Farbe */
    color: hsl(0, 0%, 86%); /* Textfarbe beibehalten oder anpassen */
}

.navbar-menu .navbar-item:hover { /*Menü invertiert*/
    background-color: hsl(0, 0%, 86%); /* oder eine gewünschte Farbe */
    color: hsl(0, 0%, 14%); /* Textfarbe beibehalten oder anpassen */
}

.navbar-brand:hover { /*Brand soll nicht reagieren*/
    background-color: hsl(0, 0%, 14%);
    color: hsl(0, 0%, 86%);
    box-shadow: none;
    text-decoration: none;
}

.navbar-brand .navbar-item:hover {
    background-color: hsl(0, 0%, 14%);
    color: hsl(0, 0%, 86%);
    box-shadow: none;
    text-decoration: none;
}

/* Stellt sicher, dass der Hintergrund beim aktiven Zustand dunkelgrau bleibt */
.navbar-brand .navbar-item:active {
    background-color: hsl(0, 0%, 14%) !important; /* Dunkelgrauer Hintergrund */
    color: hsl(0, 0%, 86%) !important;
}

.navbar-brand {
    background-color: hsl(0, 0%, 14%) !important; /* Dunkelgrauer Hintergrund */
    color: hsl(0, 0%, 86%) !important;
}

.navbar-end .navbar-item:hover { /* Buttons kein Hover */
    background-color: inherit;
    color: inherit;
    box-shadow: none;
    text-decoration: none;
}

.custom-title-size {
    font-size: 4rem;
}

.custom-title-color {
    color: hsl(48, 100%, 67%) !important; /*ist bulma warning */
}

.menu-list a {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 5px; /* Abgerundete Ecken */
    transition: all 0.3s ease;
    min-width: 250px; /* Setze eine feste Mindestbreite */
    text-align: left;
}

.menu-list a:hover {
    background-color: #f0f8ff;
    border-color: #00d1b2;
    color: #00d1b2 !important; /* Textfarbe beim Hover */
    font-weight: bold; /* Fett beim Hover */
}