/* Logo/Icono de Eventix usando imagen */
.eventix-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

/* Logo con texto */
.eventix-logo-with-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.eventix-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

/* Variantes de tamaño */
.eventix-logo-img.small {
    width: 32px;
    height: 32px;
}

.eventix-logo-img.large {
    width: 48px;
    height: 48px;
}

/* Animación hover */
.eventix-logo-with-text:hover .eventix-logo-img {
    transform: scale(1.05);
}

.eventix-logo-with-text:hover .eventix-logo-text {
    color: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .eventix-logo-img {
        width: 150px;
        height: auto;
    }
    
    .eventix-logo-text {
        font-size: 1.3rem;
    }
} 