/* ===== LOGO MODERNO MARIACHI SOL DEL ÁGUILA ===== */

/* Logo principal con efectos modernos */
.logo-modern {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.logo-modern:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Logo en el header/navegación */
.nav-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    mix-blend-mode: normal;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    background: transparent !important;
    background-color: transparent !important;
}

/* Asegurar transparencia en el contenedor del logo */
.logo-text-modern {
    background: transparent;
}

.logo-text-modern:hover {
    background: transparent;
}

/* Estilos específicos para logo SVG con transparencia */
.nav-logo-img[src$=".svg"] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Asegurar que el logo SVG mantenga transparencia en todos los estados */
.nav-logo-img[src$=".svg"]:hover,
.nav-logo-img[src$=".svg"]:focus,
.nav-logo-img[src$=".svg"]:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Versión del logo solo con texto para header */
.logo-text-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text-modern:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.logo-icon::before {
    content: '🎵';
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.logo-icon:hover::after {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #7f8c8d;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -5px;
}

/* Logo completo para hero section */
.logo-hero {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.logo-hero svg {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.logo-hero svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.3));
}

/* Logo para footer */
.logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-footer .logo-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
}

.logo-footer .logo-text {
    font-size: 1.5rem;
    color: #e74c3c;
}

/* Versión minimalista para móviles */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon::before {
        font-size: 20px;
    }
    
    .logo-hero svg {
        max-width: 300px;
    }
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de partículas para el logo */
.logo-particles {
    position: relative;
    overflow: hidden;
}

.logo-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(231, 76, 60, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Logo con efecto de neón */
.logo-neon {
    text-shadow: 
        0 0 5px #e74c3c,
        0 0 10px #e74c3c,
        0 0 15px #e74c3c,
        0 0 20px #e74c3c;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 5px #e74c3c,
            0 0 10px #e74c3c,
            0 0 15px #e74c3c,
            0 0 20px #e74c3c;
    }
    to {
        text-shadow: 
            0 0 2px #e74c3c,
            0 0 5px #e74c3c,
            0 0 8px #e74c3c,
            0 0 12px #e74c3c;
    }
}
