/**
 * FAQ Menü-Farbe Fix
 * Stellt sicher, dass die Menüfarbe bei FAQ-Seiten korrekt angezeigt wird
 * Die Menüfarbe sollte transparent sein, wie auf allen anderen Seiten
 */

/* FAQ: Navigation transparent (wie auf anderen Seiten) */
body#module-faqs-display #header .header-nav,
body#module-faqs-display .header-nav {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass das Navigationsmenü bei FAQ transparent ist */
body#module-faqs-display #header .menu,
body#module-faqs-display .menu {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass alle Menü-Elemente bei FAQ transparent sind */
body#module-faqs-display #header .menu > ul > li,
body#module-faqs-display .menu > ul > li,
body#module-faqs-display #header .menu ul li,
body#module-faqs-display .menu ul li {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass Menü-Links bei FAQ die gleiche Farbe haben */
body#module-faqs-display #header .menu > ul > li > a,
body#module-faqs-display .menu > ul > li > a,
body#module-faqs-display #header .menu ul li a,
body#module-faqs-display .menu ul li a {
    color: #ffffff !important;
}

/* Stelle sicher, dass Top-Menü und Main-Menü bei FAQ transparent sind */
body#module-faqs-display #header .top-menu,
body#module-faqs-display .top-menu,
body#module-faqs-display #header .main-menu,
body#module-faqs-display .main-menu {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass alle Navigations-Container bei FAQ transparent sind */
body#module-faqs-display #header nav,
body#module-faqs-display #header .nav,
body#module-faqs-display nav,
body#module-faqs-display .nav {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass alle Navigations-Listen bei FAQ transparent sind */
body#module-faqs-display #header nav ul,
body#module-faqs-display #header .nav ul,
body#module-faqs-display nav ul,
body#module-faqs-display .nav ul {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass alle Navigations-Listenelemente bei FAQ transparent sind */
body#module-faqs-display #header nav ul li,
body#module-faqs-display #header .nav ul li,
body#module-faqs-display nav ul li,
body#module-faqs-display .nav ul li {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Stelle sicher, dass alle Navigations-Links bei FAQ die gleiche Farbe haben */
body#module-faqs-display #header nav ul li a,
body#module-faqs-display #header .nav ul li a,
body#module-faqs-display nav ul li a,
body#module-faqs-display .nav ul li a {
    color: #ffffff !important;
}

/* Braune Farbe für Breadcrumb/Page-Header bei FAQ wiederherstellen */
body#module-faqs-display .breadcrumb,
body#module-faqs-display .page-header,
body#module-faqs-display #wrapper .breadcrumb,
body#module-faqs-display nav.breadcrumb {
    background-color: #8B4513 !important;
    background: #8B4513 !important;
}

/* Alternative braune Farben (falls eine andere verwendet wird) */
body#module-faqs-display .breadcrumb,
body#module-faqs-display .page-header {
    background-color: #8B4513 !important;
    background: #8B4513 !important;
}

/* Falls die Farbe #A0522D (Sienna) verwendet wird */
body#module-faqs-display .breadcrumb[data-depth="2"],
body#module-faqs-display nav.breadcrumb[data-depth="2"] {
    background-color: #A0522D !important;
    background: #A0522D !important;
}

