/* --- 1. HEADER & BRANDING OVERHAUL --- */

/* Replace the old green header with the new deep Jewel Green */
.wa-header-bar, .wa-theme-header {
    background-color: #006400 !important; 
    
    /* MODIFIED FOR HOLIDAY CHEER: Adds a gold and a red bottom border */
    border-bottom: 5px solid #FFD700 !important; /* Gold line */
    box-shadow: 0 5px 0 0 #B22222, /* Traditional deep RED line */
                0 7px 5px rgba(0, 0, 0, 0.2) !important; /* Original shadow */
}

/* Ensure the main title text is bright and readable against the dark green */
.wa-site-title a, .wa-site-subtitle {
    color: #ffffff !important; 
}

/* Modernize Top Menu Links: Use Gold for impact */
.wa-menu-bar .wa-menu-item a {
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    color: #ffffff !important; 
    transition: all 0.3s ease;
    padding: 15px 12px;
}

/* Gold/Red hover effect for a premium touch */
.wa-menu-bar .wa-menu-item a:hover {
    color: #B22222 !important; /* Changed to RED for holiday cheer */
    background-color: rgba(255, 255, 255, 0.1); 
}