/* branding-overrides.css - Global Fixes for Pasada Website */

/* 1. Fix Footer Logo Visibility and Scaling */
.footer-logo {
    opacity: 1 !important;
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
}

/* 2. Fix Orange Navbar Icons (Force to currentColor) */
.navbar1_dropdown-toggle svg path,
.navbar1_menu-dropdown svg path,
.dropdown-icon svg path,
.navbar1_menu-button svg path,
.menu-icon1 svg path,
.navbar1_menu-button .menu-icon1_line-top,
.navbar1_menu-button .menu-icon1_line-middle,
.navbar1_menu-button .menu-icon1_line-bottom {
    fill: currentColor !important;
    background-color: currentColor !important;
    /* For some div-based lines */
}

/* 3. Global Icon Color in Navbar */
.navbar1_component {
    color: white !important;
    /* Default to white for the dark theme */
}

/* 4. Remove any hardcoded orange backgrounds from specific utility buttons if they persist */
.button.is-icon[style*="background: linear-gradient(90deg, #ca8a04, #b45309)"] {
    /* This matches the crm button I saw, keeping it as is unless requested to change */
}