/* Logo Size Adjustments */
.site-logo img {
    max-height: 64px; /* enlarged */
    width: auto;
    object-fit: contain;
}

/* Header logo specific */
.header-menu-content .site-logo img {
    max-height: 60px; /* enlarged in header */
}

/* Footer logo specific */
.footer-logo .site-logo img {
    max-height: 50px; /* Slightly increased from 45px */
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .site-logo img { max-height: 58px; }
    
    .header-menu-content .site-logo img { max-height: 54px; }
    
    .footer-logo .site-logo img {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .site-logo img { max-height: 52px; }
    .header-menu-content .site-logo img { max-height: 48px; }
}

/* Enforce uppercase for main header menu items */
.navbar-nav.main-menu > li > a {
    text-transform: uppercase;
}
