/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 09 2026 | 09:05:37 */
/* ------------------------------- */
/* FreezyTrap Menü – CSS-only      */
/* ------------------------------- */
.menu-item > a[href=""] {
    cursor: default;
    pointer-events: none;
}

.navbar {
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .5);
}

/* 3. Header-Hintergrund – grau mit rgb(211, 211, 211) */
.navbar {
    background: rgb(110 110 110 / 95%) !important; /* Dunkles Grau, fast deckend */
    transition: background 0.3s ease;
}

/* 4. Menülinks */
.navbar-nav > li > a {
    color: #8c0303 !important; /* Rot passend zum Logo */
    font-weight: 500;
    padding: 16px 22px !important;
    font-size: 17px;
    transition: all 0.25s ease;
}
/* Hover */
.navbar-nav > li > a:hover {
    color: #8c0303 !important; /* Helleres Rot */
}

/* aktive Links */
.navbar-nav > .current-menu-item > a {
    color: #8c0303 !important; /* Helleres Rot */
    border-bottom: 2px solid #8c0303;
}

/* 5. Untermenüs – Farbliche Anpassungen */
.dropdown-menu {
    background: rgb(110 110 110 / 95%) !important;  /* Dunkleres Grau für das Dropdown */
    border: none !important;
    border-radius: 4px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.dropdown-menu > li > a {
    color: #f1f1f1 !important; /* Helleres Grau für bessere Lesbarkeit */
    padding: 10px 16px !important;
    transition: all 0.25s ease;
}

/* Hover-Effekt für Dropdown-Links */
.dropdown-menu > li > a:hover {
    background: rgba(225, 43, 37, 0.2) !important; /* Dezenter roter Akzent beim Hover */
    color: #FF6464 !important;
    text-shadow: 0 0 6px rgba(225, 43, 37, 0.5);
}

/* 6. Mobile Hamburger Menü */
.navbar-toggle {
    border-color: #e12b25 !important;
}

.navbar-toggle .icon-bar {
    background-color: #e12b25 !important;
}


@media (max-width: 991px) {
    .navbar.navbar-inverse {
        background: rgb(211, 211, 211) !important; /* Mobile Header auch in grauem Hintergrund */
    }

    .navbar-nav > li > a {
        border-bottom: 1px solid rgba(225, 43, 37, 0.2);
    }

    .dropdown-menu {
        background: rgb(55, 55, 55) !important; /* Mobile Dropdown ebenfalls in dunklem Grau */
    }
}
