        body { font-family: 'Montserrat', sans-serif; }
        .font-kids { font-family: 'Fredoka One', cursive; }
        .font-script { font-family: 'Pacifico', cursive; }
        .hero-bg {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1533221216134-c43c2607f828?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: top center;
        }
        


    /* ============================= */
    /* ANIMATIONS GÉNÉRALES AU SCROLL */
    /* ============================= */

 .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}


    /* Animation avec retard automatique */
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }
    .delay-5 { transition-delay: 0.40s; }
    .delay-6 { transition-delay: 0.48s; }

    /* Effet premium sur les cartes */
    .animated-card {
        transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
    }

    .animated-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0,0,0,0.16);
        filter: saturate(1.08);
    }

    /* Effet image premium */
    .animated-image {
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .animated-image:hover {
        transform: scale(1.08);
        filter: brightness(1.05) contrast(1.05);
    }



.animated-btn {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.animated-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

    /* Animation douce du logo */
    header img[alt="Logo"] {
        animation: logoFloat 4s ease-in-out infinite;
    }

    @keyframes logoFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-6px);
        }
    }

    /* Animation du bouton WhatsApp */
    .whatsapp-pulse {
        animation: whatsappPulse 2.2s infinite;
    }

    @keyframes whatsappPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
        }
        70% {
            box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Respect des utilisateurs qui réduisent les animations */
    @media (prefers-reduced-motion: reduce) {
        .reveal,
        .reveal-left,
        .reveal-right,
        .reveal-scale,
        .reveal-zoom,
        .animated-card,
        .animated-image,
        .animated-btn,
        header img[alt="Logo"] {
            animation: none !important;
            transition: none !important;
            opacity: 1 !important;
            transform: none !important;
            filter: none !important;
        }
    }
.whatsapp-pulse {
    animation: whatsappPulse 2.2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
  
/* =========================
   RESPONSIVE MOBILE - LEADERS CAMP
   Garde le même style, ajuste seulement mobile
========================= */

@media (max-width: 767px) {

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        background: #fff;
    }

    /* HEADER */
    header#accueil {
        padding-left: 16px !important;
        padding-right: 16px !important;
        min-height: 76px !important;
    }

    header#accueil > div.absolute {
        left: 16px !important;
        top: 4px !important;
    }

    header#accueil img[alt="Logo"] {
        height: 92px !important;
    }

    header#accueil .w-40 {
        width: 105px !important;
    }

    header#accueil a[href="#colonies"] {
        font-size: 9px !important;
        padding: 9px 12px !important;
        white-space: nowrap;
    }

    /* HERO */
    #hero-slider {
        height: 78vh !important;
        min-height: 560px;
        background-position: center top !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    #hero-slider .relative.z-10 {
        margin-top: -45px !important;
        max-width: 100%;
    }

    #slide-subtitle {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    #slide-title {
        font-size: 34px !important;
        line-height: 1.05 !important;
        max-width: 340px !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px !important;
    }

    #slide-title br {
        display: none;
    }

    #hero-slider a[href="#colonies"] {
        padding: 12px 22px !important;
        font-size: 10px !important;
        border-radius: 12px !important;
    }

    #hero-slider .absolute.bottom-32 {
        bottom: 105px !important;
    }

    /* COUNTDOWN */
    #hero-slider + section,
    section.relative.z-20.bg-\[\#fbb034\] {
        padding: 22px 16px !important;
        margin-top: -42px !important;
        border-radius: 32px 32px 0 0 !important;
    }

    section.relative.z-20.bg-\[\#fbb034\] > div {
        gap: 16px;
    }

    section.relative.z-20.bg-\[\#fbb034\] .text-white.text-left {
        text-align: center !important;
        margin-left: 0 !important;
    }

    section.relative.z-20.bg-\[\#fbb034\] h2 {
        font-size: 18px !important;
        line-height: 1.15 !important;
    }

    section.relative.z-20.bg-\[\#fbb034\] .flex.space-x-3 {
        width: 100%;
        justify-content: center;
        gap: 8px !important;
        margin-top: 14px !important;
    }

    section.relative.z-20.bg-\[\#fbb034\] .w-16 {
        width: 72px !important;
        padding: 8px 6px !important;
    }

    /* WHATSAPP */
    a[href^="https://wa.me"] {
        bottom: 18px !important;
        left: 18px !important;
    }

    a[href^="https://wa.me"] .w-14 {
        width: 52px !important;
        height: 52px !important;
    }

    a[href^="https://wa.me"] > div:last-child {
        display: none !important;
    }

    /* SECTION WHO */
    #who {
        padding: 70px 18px !important;
    }

    #who .max-w-7xl {
        gap: 28px !important;
    }

    #who img {
        max-height: 430px !important;
    }

    #who h2 {
        font-size: 34px !important;
        line-height: 1.05 !important;
        text-align: left;
        word-break: break-word;
    }

    #who h2 span {
        letter-spacing: 2px !important;
        display: block;
    }

    #who .grid {
        gap: 18px !important;
    }

    #who li {
        white-space: normal !important;
        align-items: flex-start !important;
        line-height: 1.35 !important;
    }

    /* TITRES DES SECTIONS */
    section h2 {
        font-size: 38px !important;
        line-height: 1.05 !important;
    }

    section .font-script {
        font-size: 22px !important;
    }

    /* COLONIES */
    #colonies {
        padding: 70px 18px !important;
    }

    #colonies .mb-16 {
        margin-bottom: 42px !important;
    }

    #colonies .grid {
        gap: 26px !important;
    }

    #colonies .rounded-\[40px\] {
        border-radius: 34px !important;
        padding: 20px !important;
    }

    #colonies h3 {
        font-size: 30px !important;
        line-height: 1.05 !important;
    }

    #colonies p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    #colonies a {
        width: 100%;
        text-align: center;
        padding: 13px 18px !important;
    }

    /* ACADEMY */
    section:has(h2.font-kids) {
        overflow-x: hidden;
    }

    .rounded-\[30px\] {
        border-radius: 28px !important;
    }

    .h-64 {
        height: 220px !important;
    }

    /* VIDEO / LEADERSHIP SECTION */
    .aspect-video {
        border-radius: 26px !important;
    }

    section.bg-\[\#01AFF4\] {
        padding: 70px 18px !important;
    }

    section.bg-\[\#01AFF4\] p {
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    section.bg-\[\#01AFF4\] p br {
        display: none;
    }

    /* GALERIE + VIDEOS */
    #galerie,
    section.bg-\[\#FCC044\] {
        padding: 70px 18px !important;
    }

    #galerie .grid,
    section.bg-\[\#FCC044\] .grid {
        gap: 22px !important;
    }

    #galerie .rounded-\[35px\],
    section.bg-\[\#FCC044\] .rounded-\[35px\] {
        border-radius: 26px !important;
    }

    /* ATELIERS */
    #ateliers {
        padding: 70px 18px !important;
    }

    #ateliers .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    #ateliers .p-8 {
        padding: 20px 12px !important;
    }

    #ateliers .w-20 {
        width: 64px !important;
        height: 64px !important;
    }

    #ateliers h3 {
        font-size: 17px !important;
        line-height: 1.1 !important;
    }

    /* ACTIVITES */
    #activites {
        padding: 70px 14px !important;
    }

    #activites .grid {
        gap: 14px !important;
    }

    #activites h3 {
        font-size: 14px !important;
        line-height: 1.05 !important;
    }

    #activites .rounded-\[35px\] {
        border-radius: 24px !important;
    }

    #activites .absolute.bottom-4 {
        bottom: 12px !important;
    }

    #activites .py-1\.5 {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    #activites .px-5 {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* BUTTONS GENERAUX */
    a {
        max-width: 100%;
    }

    .px-10 {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .py-4 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }
}

@media (max-width: 767px) {
    .mobile-logo-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease;
    }
}

.mobile-form-arrow {
    display: none;
}

@media (max-width: 768px) {
    .mobile-form-arrow {
        position: fixed;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;

        display: flex;
        align-items: center;
        gap: 10px;

        background: #e7604a;
        color: white;
        padding: 13px 20px;
        border-radius: 999px;

        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        animation: bounceArrow 1.4s infinite;
        transition: all 0.3s ease;
    }

    .mobile-form-arrow i {
        font-size: 15px;
    }

    .mobile-form-arrow:hover {
        background: #3d2b1f;
        transform: translateX(-50%) scale(1.05);
    }

    @keyframes bounceArrow {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-8px);
        }
    }

    .mobile-form-arrow.hide-arrow {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(20px);
    }
}

