        /* ===== BANNIÈRE / CAROUSEL ===== */
        .ban-banner {
            position: relative;
            width: 100%;
            min-height: 600px;
            background: linear-gradient(135deg, var(--bleu-profond), #003d7a);
            overflow: hidden;
        }

        .ban-banner::before {
            content: '✦';
            position: absolute;
            top: 10%;
            right: 10%;
            font-size: 8rem;
            color: rgba(255, 210, 0, 0.1);
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {

            0%,
            100% {
                opacity: 0.1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .car-carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Slides */
        .car-carousel-inner {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .car-carousel-item {
            display: none;
            width: 100%;
            animation: fadeIn 0.8s ease-out;
        }

        .car-carousel-item.active {
            display: block;
        }

        /* Section center - contenu du slide */
        .ban-section-center {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--espacement-xl);
            align-items: center;
            padding: var(--espacement-xl) 0;
            min-height: 600px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Container */
        .ban-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--espacement-md);
        }

        /* Image */
        .ban-banner-img {
            position: relative;
        }

        .ban-banner-picture-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--ombre-forte);
            transition: var(--transition-normale);
        }

        .ban-banner-picture-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 200, 83, 0.3);
        }

        .ban-banner-picture {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        /* Info */
        .ban-banner-info {
            color: var(--blanc-lunaire);
            padding: var(--espacement-md);
        }

        .ban-banner-title h3 {
            font-family: var(--police-devise);
            font-size: 1.1rem;
            font-weight: 400;
            font-style: italic;
            color: var(--jaune-solaire);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: var(--espacement-xs);
        }

        .ban-banner-title h2 {
            font-family: var(--police-titres);
            font-size: 3rem;
            font-weight: 700;
            color: var(--blanc-lunaire);
            margin-bottom: var(--espacement-md);
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .ban-banner-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: var(--espacement-md);
        }

        /* Bouton */
        .ban-btn {
            display: inline-block;
            padding: 0.9rem 2.5rem;
            background: linear-gradient(135deg, var(--vert-orbital), #00a844);
            color: var(--blanc-lunaire);
            font-family: var(--police-titres);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 50px;
            box-shadow: var(--ombre-moyenne);
            transition: var(--transition-normale);
            margin-top: var(--espacement-sm);
        }

        .ban-btn:hover {
            background: linear-gradient(135deg, var(--jaune-solaire), #ffc400);
            color: var(--bleu-profond);
            transform: translateY(-3px);
            box-shadow: var(--ombre-forte);
        }

        /* Indicateurs */
        .car-carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: var(--espacement-sm);
            list-style: none;
            z-index: 10;
        }

        .car-carousel-indicators li {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition-rapide);
        }

        .car-carousel-indicators li:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .car-carousel-indicators li.active {
            width: 40px;
            border-radius: 6px;
            background: var(--vert-orbital);
        }

        /* Contrôles */
        .car-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 200, 83, 0.8);
            border: none;
            border-radius: 50%;
            color: var(--blanc-lunaire);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition-normale);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .car-carousel-control:hover {
            background: var(--vert-orbital);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
        }

        .car-carousel-control-prev {
            left: 30px;
        }

        .car-carousel-control-next {
            right: 30px;
        }

        /* Responsive */
        @media screen and (max-width: 992px) {
            .ban-section-center {
                grid-template-columns: 1fr;
                gap: var(--espacement-lg);
                padding: var(--espacement-lg) 0;
            }

            .ban-banner-title h2 {
                font-size: 2.5rem;
            }

            .ban-banner-picture {
                height: 350px;
            }
        }

@media screen and (max-width: 768px) {
    .ban-banner {
        min-height: auto; /* Permet au banner de s’adapter à son contenu */
    }

    .ban-section-center {
        padding: var(--espacement-sm) 0; /* Un peu moins d’espace pour mobile */
    }

    .ban-banner-title h2 {
        font-size: 1.5rem; /* Taille plus adaptée aux petits écrans */
        line-height: 1.3;   /* Évite un texte trop long verticalement */
    }

    .ban-banner-text {
        font-size: 0.9rem;  /* Un peu plus petit pour mobile */
        line-height: 1.4;   /* Lisibilité optimisée */
        text-align: justify;
        text-align-last: left;
    }

    .car-carousel-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .car-carousel-control-prev {
        left: 10px;
    }

    .car-carousel-control-next {
        right: 10px;
    }

    .ban-banner-picture {
        height: 220px; /* image plus compacte */
        object-fit: cover; /* garde l'image bien centrée et proportionnée */
    }
}

        @media screen and (max-width: 480px) {
            .ban-banner-title h2 {
                font-size: 1.6rem;
            }

            .ban-btn {
                padding: 0.7rem 2rem;
                font-size: 0.9rem;
            }

            .car-carousel-indicators {
                bottom: 15px;
            }
        }
        /* fin du css banierre et carousel */
