/* Logo Styles for AnimixStream */

/* Desktop Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
    transition: all 0.3s ease;
}

/* Dark mode styles */
.dark-mode .logo-text {
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Logo Styles */
.mobile-logo-container .logo {
    font-size: 1.3rem;
    margin-right: 0;
}

.mobile-logo-container .logo-img {
    height: 30px;
    margin-right: 8px;
}

.mobile-logo-container .logo-text {
    font-size: 1.3rem;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        max-width: none;
        overflow: visible;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .header-left {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.3rem;
        max-width: none;
        overflow: visible;
        text-overflow: clip;
    }
    
    .mobile-logo-container .logo-img {
        height: 25px;
    }
    
    .mobile-logo-container .logo-text {
        font-size: 1.2rem;
        max-width: none;
        overflow: visible;
        text-overflow: clip;
    }
    
    .menu-toggle {
        margin-right: 8px;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .logo-img {
        filter: brightness(1.1);
    }
    .logo-text {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
} 