/* Logo Styles for SomaSuq */

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand:hover {
    text-decoration: none !important;
}

/* Logo in footer */
footer .navbar-brand img,
footer h5 img {
    filter: brightness(1.1) drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px !important;
        max-width: 120px !important;
    }
    
    footer h5 img {
        height: 25px !important;
        max-width: 100px !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px !important;
        max-width: 100px !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
}

/* Logo loading animation */
.navbar-brand img {
    animation: logoFadeIn 0.5s ease-in-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo hover effects */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.navbar-brand:hover::before {
    left: 100%;
}