/* Logo Fix for Desktop and Tablet - ULTRA ENHANCED VERSION */

/* FORCE LOGO VISIBILITY ON DESKTOP AND TABLET - MAXIMUM PRIORITY */
@media (min-width: 768px) {
    /* Force navbar to be visible */
    .navbar,
    .navbar-default {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }
    
    /* FORCE navbar header to be visible with maximum z-index */
    .navbar-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        float: left !important;
        position: relative !important;
        z-index: 99999 !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* FORCE h1 container to be visible */
    .navbar-header h1 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: inherit !important;
        height: auto !important;
        width: auto !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 100000 !important;
        font-weight: normal !important;
        line-height: normal !important;
    }
    
    /* FORCE LOGO TO BE VISIBLE - MAXIMUM OVERRIDE */
    .navbar-header h1 .header-logo,
    .navbar-header h1 a.header-logo,
    .header-logo,
    a.header-logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 280px !important;
        height: 46px !important;
        margin: 2px 5px 0 20px !important;
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        overflow: hidden !important;
        text-indent: -9999px !important;
        position: relative !important;
        z-index: 100001 !important;
        
        /* FORCE positioning */
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        
        /* FORCE background image path */
        background-image: url(/wp-content/uploads/2025/12/unnamed.jpg) !important;
        
        /* FORCE dimensions and layout */
        float: none !important;
        clear: none !important;
        max-width: none !important;
        min-width: 280px !important;
        max-height: none !important;
        min-height: 46px !important;
        
        /* FORCE text properties */
        color: transparent !important;
        font-size: 0 !important;
        line-height: 46px !important;
        white-space: nowrap !important;
        
        /* FORCE border and outline */
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        
        /* FORCE layout properties */
        vertical-align: top !important;
        text-decoration: none !important;
    }
}

/* SPECIFIC FIX FOR LARGER DESKTOP SCREENS */
@media (min-width: 992px) {
    .navbar-header {
        float: left !important;
    }
    
    .navbar-header h1 .header-logo,
    .navbar-header h1 a.header-logo,
    .header-logo,
    a.header-logo {
        margin: 7px 5px 0 20px !important;
        width: 280px !important;
        height: 46px !important;
    }
}

/* DEBUGGING - Show red border to see if element is there */
/* DEBUG COLORS REMOVED - LOGO IS NOW WORKING PROPERLY */

/* DO NOT CHANGE MOBILE STYLES - Mobile is working correctly */
@media (max-width: 767px) {
    /* Keep mobile styles as they are - DON'T CHANGE */
}
