/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    padding: 4px;
    background: rgba(255,255,255,0.1);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    background: rgba(255,255,255,0.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 40px;
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 140px;
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-logo:hover img {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .footer-logo img {
        max-height: 40px;
        width: 120px;
        height: 40px;
        padding: 6px;
    }
}