/* Custom Logo Size - Make logo much more visible and prominent */
header .navbar-brand img {
    max-height: 120px !important; /* Significantly increased for better visibility */
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* Add subtle shadow for depth */
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    header .navbar-brand img {
        max-height: 90px !important; /* Larger on tablets for better visibility */
    }
}

@media (max-width: 480px) {
    header .navbar-brand img {
        max-height: 70px !important; /* Still prominent on mobile */
    }
} 