.city-card-2 {
    display: block;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-content {
    padding: 16px;
}

.card-header {
    display: flex; /* Dispose les éléments en ligne */
    justify-content: space-between; /* Espace entre le titre et le bouton */
    align-items: center;
    margin-bottom: 16px;
}

.card-title {
    font-size: 1.5em;
    color: #ff5733;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title i {
    color: #ff5733;
}

/* Bouton "Réserver" */
.btn-book {
    background-color: #ff5733;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #e3471f;
}

.card-highlight {
    margin-top: 12px;
    text-align: left; /* Texte à gauche */
}

.card-highlight ul {
    margin: 8px 0;
    padding-left: 20px;
    list-style-type: disc;
    text-align: justify; /* Justification */
}

.card-description {
    margin-top: 12px;
    text-align: justify; /* Justification */
}

.card-description p {
    margin: 12px 0;
    line-height: 1.6;
}

.city-image-2 {
    margin-top: 16px;
    text-align: center; /* Centre l'image horizontalement */
    overflow: hidden; /* Empêche tout débordement non souhaité */
}

.city-image-2 img {
    width: 100%;
    max-width: 100%; /* S'assure que l'image occupe 100% du conteneur */
    height: auto; /* Maintient les proportions naturelles de l'image */
    display: block;
    object-fit: contain; /* Affiche l'image entièrement sans recadrage */
}

/* Bouton en bas */
.card-footer {
    margin-top: 16px;
    text-align: center;
}

/* Conteneur principal du slider */
.city-slider-container {
    width: 100%;
    overflow: hidden; /* Cache les slides qui débordent */
    position: relative; /* Nécessaire si vous ajoutez des flèches ou des boutons */
}

/* Wrapper pour les slides */
.city-slider {
    display: flex; /* Met les slides en ligne horizontale */
    gap: 16px; /* Espacement entre les images */
    transition: transform 0.5s ease; /* Animation fluide pour glisser les slides */
}

/* Chaque slide */
.city-slide {
    flex: 0 0 calc(33.33% - 16px); /* 3 slides visibles sur desktop */
    max-width: calc(33.33% - 16px);
    overflow: hidden; /* Empêche tout débordement */
}

.city-slide img {
    width: 100%; /* L'image occupe toute la largeur du slide */
    height: auto; /* Conserve les proportions naturelles de l'image */
    border-radius: 8px; /* Ajoute des coins arrondis pour un visuel moderne */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .city-slide {
        flex: 0 0 calc(50% - 16px); /* 2 slides visibles sur tablette */
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 480px) {
    .city-slide {
        flex: 0 0 calc(100% - 16px); /* 1 slide visible sur mobile */
        max-width: calc(100% - 16px);
    }
}

.feature-city-2 {
    background: white;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
