body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h2 {
    color: #1E3A5F;
}

h5 {
    font-weight: 400;
    font-size: 0.95em;
    color: #444;
    font-style: italic; /* optionnel pour une touche plus douce */
}


.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

#lieu-nom {
    font-size: 24px;
    margin-bottom: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-container img {
    width: auto;
    max-height: 300px;
    object-fit: contain;
}

figcaption {
    font-weight: 400;
    font-size: 0.80em;
    color: #444;
}

.langue-section {
    margin-bottom: 40px;
    text-align: left;
}

.langue-section h3 {
    color: #2c3e50;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.langue-section p {
    margin: 10px 0;
}

.langue-section audio {
    margin-top: 10px;
    width: 100%;
}

a:focus, audio:focus {
    outline: 2px solid #0056b3; /* Ou toute autre couleur contrastée */
}


/* Adaptation pour mobile : images empilées */
@media (max-width: 600px) {
    .image-container {
        flex-direction: column;
    }
    .image-container img {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .langue-section p {
        text-align: justify;
    }
}
