/* Conteneur principal de la page */
.ville-page-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 15px;
    border-radius: 15px;
    color: #ffffff;
    animation: fadeIn 1.5s ease-in-out; /* Animation d'entrée */
    overflow-x: hidden;
}

/* Logo de Vendôme */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
    animation: zoomIn 1.5s ease-in-out; /* Animation d'entrée */
}

.ville-logo {
    max-width: 35%;
    height: auto;
}

/* Titre de la page */
.ville-title,
.minotaure-title {
    text-align: center;
    font-size: 2.5em;
    color: #ffffff; /* Couleur habituelle pour meilleure intégration */
    margin-bottom: 30px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    animation: fadeIn 1.5s ease-in-out; /* Animation d'entrée */
}

/* Texte de la section */
.ville-section {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    animation: fadeIn 1.5s ease-in-out; /* Animation d'entrée */
}

/* Images associées à chaque section */
.ville-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeIn 1.5s ease-in-out; /* Animation d'entrée */
}

.section-image {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out; /* Ajout de transition sur hover */
}

.section-image:hover {
    transform: scale(1.05); /* Légère augmentation de la taille au survol */
}

/* Animation de fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de zoom */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ville-page-container {
        padding: 20px 10px;
    }

    .ville-title,
    .minotaure-title {
        font-size: 2em;
    }

    .ville-logo {
        max-width: 120px;
    }

    .ville-section {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .section-image {
        max-width: 90%;
        margin-bottom: 20px;
    }
}
