/* Autom Logo Size Controls */

/* Main Header Logo - Bold and prominent */
.main-header-one__logo-box img {
    max-height: 50px;
    width: auto;
}

/* Footer Logo - More visible */
.footer-widget__logo img {
    max-height: 75px;
    width: auto;
}

/* Mobile Navigation Logo - Keep existing but ensure consistency */
.mobile-menu .nav-logo img {
    max-height: 65px;
    width: auto;
    max-width: 220px;
}

/* Brand Showcase Logos - More visible */
.brand-one__brand-img img,
.brand-two__brand-img img {
    max-height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand-one__brand-img:hover img,
.brand-two__brand-img:hover img {
    opacity: 1;
}

/* Login/Auth Page Logos - Prominent for branding */
.login-page__logo img,
.reset-password-page__logo img {
    max-height: 90px;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Keep header logo prominent on tablet */
    .main-header-one__logo-box img {
        max-height: 65px;
    }
    
    /* Footer logo visible on tablet */
    .footer-widget__logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    /* Still visible on mobile */
    .main-header-one__logo-box img {
        max-height: 55px;
    }
}