/**
 * front.css — Styles du slider aw_homeslider (côté front-office)
 *
 * @author  Alexandre MERY - ACMP-WEB
 */

/* Conteneur principal */
.aw-homeslider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

/* Swiper wrapper */
.aw-homeslider__swiper {
    width: 100%;
}

/* Chaque slide */
.aw-homeslider__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

/* Lien cliquable couvre toute la slide */
.aw-homeslider__link {
    display: block;
    width: 100%;
    line-height: 0;
}

/* Image responsive */
.aw-homeslider__picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.aw-homeslider__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ─── Navigation flèches ───────────────────────────────────────────────────── */
.aw-homeslider__btn-prev,
.aw-homeslider__btn-next {
    color: #fff;
    background: rgba(0, 0, 0, .35);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    transition: background .2s;
}

.aw-homeslider__btn-prev:after,
.aw-homeslider__btn-next:after {
    font-size: 18px;
}

.aw-homeslider__btn-prev:hover,
.aw-homeslider__btn-next:hover {
    background: rgba(0, 0, 0, .6);
}

/* ─── Dots ─────────────────────────────────────────────────────────────────── */
.aw-homeslider__pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .7);
    opacity: 1;
    transition: background .2s, transform .2s;
}

.aw-homeslider__pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .aw-homeslider__btn-prev,
    .aw-homeslider__btn-next {
        display: none; /* Masquer les flèches sur mobile (navigation tactile) */
    }
}
