/**
 * Logo Styling
 * 
 * Styles for both text and image logos
 */

/* Text Logo (fallback) */
.text-logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #0056b3;
    text-decoration: none;
    display: inline-block;
    padding: 0.25rem 0;
}

.text-logo span {
    color: #ff6b6b;
}

.text-logo:hover {
    text-decoration: none;
}

/* Image Logo */
.logo-img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.navbar-brand {
    padding: 0.5rem 0.75rem;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-height: 40px;
    }
} 