/* HELO Systems Logo Styling */

.helo-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.helo-logo-footer {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .helo-logo {
        height: 32px;
        max-width: 120px;
    }
    
    .helo-logo-footer {
        height: 28px;
        max-width: 100px;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
}

/* Navbar brand alignment */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    line-height: 1.2;
}

.brand-main {
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-sub {
    font-size: 0.8rem;
    opacity: 0.8;
}