/**
 * Styles pour Animated Number
 */

/* ========================================
   WRAPPER
   ======================================== */

.animated-number-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3em;
    font-family: 'Source Sans 3', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    color: #53534D; /* Couleur par défaut - à personnaliser */
}

/* ========================================
   NOMBRE ANIMÉ
   ======================================== */

.animated-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

/* ========================================
   PREFIX & SUFFIX
   ======================================== */

.animated-number__prefix,
.animated-number__suffix {
    display: inline-block;
}

/* ========================================
   COULEURS PAR GAMME
   ======================================== */

.animated-number--viennoiserie,
.animated-number--beignet,
.animated-number--brioche {
    color: #F79446;
}

.animated-number--patisserie {
    color: #F15B73;
}

.animated-number--snacking {
    color: #FF7C69;
}

.animated-number--boulangerie {
    color: #FEC44F;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .animated-number-wrapper {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .animated-number-wrapper {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .animated-number-wrapper {
        font-size: 36px;
    }
}
