/* 
 * Logo and brand text styling for FuelitOnline (FIO)
 */

/* Logo container styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-2px);
}

/* FIO Logo styles */
.logo-img {
    width: 90px;
    height: auto;
}

/* Brand text styles */
.brand-text {
    height: 56px;
    width: auto;
}

/* Footer logo styling */
.footer .logo-img {
    width: 70px;
    height: auto;
    opacity: 0.9;
}

.footer .brand-text {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

/* Responsive styles */
@media (max-width: 576px) {
    .logo-img {
        width: 50px;
    }
    
    .brand-text {
        height: 30px;
    }
}