/* Container pour le slider avec une hauteur fixe */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px; /* Hauteur fixe du slider */
    overflow: hidden;
}

/* Styles pour le slider de background */
.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideAnimation 30s infinite;
}

.background-slider img:nth-child(1) {
    animation-delay: 0s;
}

.background-slider img:nth-child(2) {
    animation-delay: 10s;
}

.background-slider img:nth-child(3) {
    animation-delay: 20s;
}

@keyframes slideAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

/* Style de la carte */
#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    background-color: #053d2b;
}