/* ==========================================================================
   custom.css - Ajouts Phenix Production International
   Bouton WhatsApp flottant + petites améliorations
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.whatsapp-float i {
    line-height: 1;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }
}

/* ==========================================================================
   Catalogue produits
   ========================================================================== */
.catalogue-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.catalogue-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.catalogue-item .gallery-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 576px) {
    .catalogue-item .gallery-img img {
        height: 200px;
    }
}

/* Empeche tout element/image de forcer un scroll horizontal sur mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.catalogue-caption {
    padding: 18px 20px 22px;
}

.catalogue-caption h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.catalogue-caption p {
    font-size: 14px;
    margin-bottom: 0;
    color: #6b6b6b;
}

/* Pulse discret pour attirer l'oeil sans etre intrusif */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.5s infinite;
}

/* ==========================================================================
   Nouveau logo (format large) : on contraint la hauteur plutôt que la largeur
   pour qu'il s'integre proprement dans le header et le footer.
   ========================================================================== */
.navbar-brand img {
    width: auto !important;
    max-height: 130px;
}

.footer-logo img {
    width: auto !important;
    max-height: 70px;
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 46px;
    }
}

