/**
 * ============================================================
 * FIX IMAGES PROJETS - DIMENSIONS UNIFORMES
 * ============================================================
 * Toutes les images des projets auront la même taille
 * Créé le : Octobre 2025
 * ============================================================
 */

/* Container de l'image du projet */
.proj-thumb {
    width: 100% !important;
    height: 250px !important; /* Hauteur fixe pour toutes les images */
    overflow: hidden;
    position: relative;
}

/* Image du projet */
.proj-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Remplit le container sans déformation */
    object-position: center center !important;
    display: block;
}

/* Effet hover */
.proj-thumb img {
    transition: transform 0.3s ease;
}

.proj-thumb:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .proj-thumb {
        height: 220px !important;
    }
}

@media (max-width: 767px) {
    .proj-thumb {
        height: 200px !important;
    }
}



