/* Frontend Logo Fix - Universal Styles */

/* Navbar Logo */
.navbar-brand img {
    max-width: 120px !important;
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Footer Logo */
.footer img[alt*="logo"],
.footer img[alt*="Logo"] {
    max-width: 100px !important;
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* General Logo Styling */
img[src*="logo"],
img[alt*="Logo"],
img[alt*="logo"] {
    object-fit: contain !important;
}

/* Prevent logo stretching */
.navbar-brand img,
.brand img,
.logo-container img {
    aspect-ratio: auto;
    object-fit: contain !important;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .navbar-brand img {
        max-width: 100px !important;
        max-height: 36px !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        max-width: 90px !important;
        max-height: 32px !important;
    }
}
