/*
Theme Name: El Sonorense
Description: Tema modular para El Sonorense - Historias de Nuestra Tierra. Diseño responsivo con identidad visual sonorense, secciones culturales especializadas y optimización para monetización digital.
Author: Aura Marketing
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elsonorense
Tags: magazine, news, culture, responsive, monetization, sonora, cultural-sections
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4

El Sonorense Theme, Copyright 2026 Aura Marketing
El Sonorense Theme is distributed under the terms of the GNU GPL
*/

/* Colores de El Sonorense */
:root {
    --es-naranja: #E95929;
    --es-amarillo: #FBC352;
    --es-negro: #000000;
    --es-gris-claro: #f8f9fa;
    --es-gris-texto: #4a4a4a;
    --es-blanco: #ffffff;
    --es-gradiente-principal: linear-gradient(135deg, #E95929 0%, #FBC352 100%);
    --es-gradiente-cultural: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Tipografía Sonorense */
body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--es-gris-texto);
    line-height: 1.6;
}

.font-display {
    font-family: 'Merriweather', serif;
}

/* Gradientes Culturales */
.sonorense-gradient {
    background: var(--es-gradiente-principal);
}

.cultural-gradient {
    background: var(--es-gradiente-cultural);
}

/* Componentes Especiales */
.accent-bar {
    height: 4px;
    background: var(--es-gradiente-principal);
}

.category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(233, 89, 41, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233, 89, 41, 0.15);
}

.cultural-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(233, 89, 41, 0.1);
    transition: all 0.3s ease;
}

.cultural-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 89, 41, 0.15);
}

/* Navegación Especializada */
.nav-pill {
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: white;
}

.nav-pill:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .section-card {
        margin-bottom: 1rem;
    }
    
    .cultural-card {
        margin-bottom: 1rem;
    }
}

/* Animaciones Culturales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Estados de Loading */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}