.foire-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* SLIDER */
.foire-hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* SLIDES */
.foire-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease;
}

.foire-slide.active {
    opacity: 1;
    z-index: 2;
}

/* IMAGE */
.foire-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden; /* 🔥 important pour le zoom */
}

.foire-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);
    transition: transform 6s ease;
}

/* 🔥 ZOOM (comme tes autres sliders) */
.foire-slide.active .foire-hero__bg img {
    transform: scale(1.08);
}

/* OVERLAY LUXE */
.foire-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.2) 70%,
        transparent 100%
    );
}

/* CONTENT */
.foire-hero__content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    padding: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
}

/* TEXT */
.foire-hero__content span {
    color: var(--color-primary);
    font-size: var(--fs-sm);
    letter-spacing: 2px;
}

.foire-hero__content h1 {
    font-family: var(--font-title);
    font-size: var(--fs-hero);
    margin: var(--space-md) 0;
}

.foire-hero__content p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 1024px) {

    .foire-hero {
        height: 420px;
    }

    .foire-hero__content {
        max-width: 420px;
        padding: var(--space-lg);
    }

    .foire-hero__content h1 {
        font-size: 36px;
    }
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {

    .foire-hero {
        height: 380px;
    }

    .foire-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.8),
            rgba(0,0,0,0.6)
        );
    }

    .foire-hero__content {
        top: auto;
        bottom: 0;
        transform: none;
        padding: var(--space-md);
        max-width: 100%;
    }

    .foire-hero__content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .foire-hero__content p {
        font-size: 13px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .foire-hero {
        height: 340px;
    }

    .foire-hero__content h1 {
        font-size: 24px;
    }

    .foire-hero__content span {
        font-size: 10px;
    }
}