@charset "utf-8";

/*
 * Legacy utility compatibility layer
 * ----------------------------------
 * The old theme's hard-coded yellow/red overrides have been removed.
 * The full design system now lives in style.css (loaded after this file).
 * Only historical class names that LFMVM core pages may still reference
 * are kept here, mapped onto the new header.png-based palette.
 */

/* "text-yellow" was the old theme's bright accent text color.
   Mapped to a rich amber that matches the gold envelope accents
   in header.png and stays readable on light surfaces. */
.text-yellow {
    color: #d97706 !important;
}

/* Navbar dropdowns: Bootstrap 4 renders dropdowns inside .navbar-nav
   statically; restore the floating panel behaviour on desktop. */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        float: left;
        min-width: 220px;
    }
}
