@charset "utf-8";
/* CSS Document */


.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-item {
    height: 180px; /* Hauteur réduite pour plus de compacité */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: #cc6633;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    background: rgba(204, 102, 51, 0);
    transition: background 0.3s ease;
    opacity: 0;
    padding: 10px;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(204, 102, 51, 0.85);
    opacity: 1;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #cc6633;
    border-radius: 2px;
}

.btn-outline-primary {
    border-color: #cc6633;
    color: #cc6633;
}

.btn-outline-primary:hover {
    background-color: #cc6633;
    border-color: #cc6633;
    color: white;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 150px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 120px;
    }
.zone-list {
    list-style-type: none; /* Supprime les puces */
    padding-left: 0; /* Optionnel : supprime l'indentation */
}

.zone-list li {
    padding-left: 0; /* Optionnel : ajuste l'espacement */
    margin-bottom: 8px; /* Optionnel : espace entre les éléments */
}


}


