/* HERO HEADER */
.hero-header {
    min-height: 600px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../images/banner1.webp") center / cover no-repeat;
    padding-top: 120px;
    /* espace pour la navbar fixed */
}

/* Navbar */
.navbar-brand {
    letter-spacing: 0.5px;
}

/* Mobile optimisation */
@media (max-width: 768px) {
    .hero-header {
        min-height: 80vh;
        padding-top: 100px;
    }
}



.feature-icon i {
    font-size: 2.2rem;
    color: #ffc107;
    /* bleu premium */
}

@media (min-width: 768px) {
    .feature-icon i {
        font-size: 2.5rem;
    }
}

/* Effet hover sur les miniatures */
.gallery-img {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(0.85) blur(1px);
}

/* Flou léger derrière la modale */
.modal-backdrop.show {
    backdrop-filter: blur(5px);
}

/* ===== GALERIE DESKTOP ===== */
.gallery-img-wrapper {
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Couvre toute la zone */
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

/* Hover premium */
.gallery-img-wrapper:hover img {
    transform: scale(1.08);
    filter: brightness(0.85) blur(1px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .gallery-grid {
        display: none;
    }
}

/* ===== CAROUSEL MOBILE ===== */
.gallery-mobile img {
    height: 300px;
    object-fit: cover;
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #ffc107!important;
    color: #000;
}
.accordion-button:focus {
    box-shadow: none!important;
}
