/* ==========================================================================
   festival-highlight.css
   Estilos para la sección del Festival Coral en el index, inspirados en la
   identidad del micrositio oficial (festivalcoral.corpoensamble.org),
   integrados con la paleta del sitio (--primary / --secondary).
   ========================================================================== */

/* Tipografías del micrositio oficial, aplicadas solo dentro de esta sección */
.festival-section h2,
.festival-section h3,
.festival-section .festival-eyebrow,
.festival-section .festival-stat-number,
.festival-section .btn-festival-gold {
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.festival-section .festival-tagline {
    font-family: 'La Belle Aurore', cursive;
    font-size: 1.4rem;
    color: #9E151A;
    line-height: 1.4;
}

/* Fondo animado sutil de la sección (antes sin efecto por falta de CSS) */
.container-fluid.bg-movimiento {
    background: linear-gradient(-45deg, #f8f9fa, #ffffff, #f2e9d8, #ffffff);
    background-size: 400% 400%;
    animation: festivalGradient 18s ease infinite;
}

@keyframes festivalGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover de las tarjetas de trayectoria (antes sin efecto) */
.hover-grow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-grow:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* --- Bloque de información del festival --- */
.festival-eyebrow {
    display: inline-block;
    max-width: 100%;
    background: linear-gradient(135deg, #9E151A, #c9791a);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(158, 21, 26, .25);
}

.festival-detail-chips {
    max-width: 100%;
}

.festival-chip {
    display: inline-block;
    max-width: 100%;
    background-color: #fff6e8;
    border: 1px solid #f0dcb0;
    color: #6b4a12;
    font-weight: 600;
    font-size: .88rem;
    padding: .45rem .9rem;
    border-radius: 50px;
    margin: 0 .3rem .6rem 0;
}

.festival-chip i {
    color: #c9791a;
}

.festival-stat-card {
    background: linear-gradient(160deg, #14213d, #1f2f52);
    border-radius: 14px;
    padding: 1rem .5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(20, 33, 61, .18);
    transition: transform .3s ease, box-shadow .3s ease;
}

.festival-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(20, 33, 61, .28);
}

.festival-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffd27a, #ff9d5c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.festival-stat-label {
    display: block;
    margin-top: .25rem;
    font-size: .74rem;
    font-weight: 600;
    color: #dfe6f5;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.btn-festival-gold {
    background: linear-gradient(135deg, #c9791a, #9E151A);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.btn-festival-gold:hover,
.btn-festival-gold:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(158, 21, 26, .3);
}

@media (max-width: 767.98px) {
    .festival-stat-card {
        margin-bottom: .75rem;
    }
}
