/* ============================================
   OPTIMISATIONS MOBILE POUR LE HERO SECTION
   À ajouter à yobbu-animations.css ou yobbu-complete.css
   ============================================ */

/* === RESPONSIVE MOBILE OPTIMISÉ === */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding-top: 80px;
    }

    .hero-container {
        padding: 4rem 1.5rem 3rem;
        gap: 2rem;
    }

    /* Badge */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    /* Titre */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-title-highlight {
        display: block;
        margin-top: 0.2rem;
    }

    /* Description */
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Boutons */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }

    /* Stats */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding-top: 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    /* Image hero - cachée sur mobile */
    .hero-image {
        display: none;
    }

    /* Scroll indicator - plus petit sur mobile */
    .hero-scroll-indicator {
        bottom: 0.6rem;
    }

    .hero-scroll-indicator svg {
        width: 20px;
        height: 20px;
    }
}

/* === TRÈS PETIT MOBILE (< 375px) === */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* === TABLETTE (768px - 1024px) === */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }
}

/* === GRAND ÉCRAN (> 1400px) === */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 5rem;
    }

    .hero-description {
        font-size: 1.35rem;
    }
}
