body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #e3e3e3;
    padding: 0;
    max-width: 100%;
    margin: auto;
}

main.corps {
    max-width: 97%;
    margin: auto;
    margin-left: 3em;
}

h1 {
    margin-top: 1em;
    text-align: center;
    font-size: 2em;
    font-family: Arial, Helvetica, sans-serif;
}

h1.trait {
    font-weight: bold;
    font-family: 'Georgia', serif;
    color: #000000;
    text-align: center;
    letter-spacing: 2px;
}

h1.trait::after {
    content: "";
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.4);
    display: block;
    margin: 0.5em auto;
    width: 95%;
    height: 2px;
    background-color: #e3e3e3;
}

h2 {
    font-weight: bold;
    color: #000000;
    text-align: center;
    background-color: rgba(227, 227, 227, 0.7);
    border-radius: 0.3em;
    margin-top: 0;
    padding: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.container {
    display: flex;
    flex-wrap: wrap;
    padding: 2em;
    gap: 1em;
}

.image-haut {
    flex: 40%;
    width: 40%;
    border-radius: 0.7em;
    border: 1px solid #c1c1c1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Description */
.description {
    flex: 50%;
    background-color: #ffffff;
    padding: 1%;
    padding-bottom: 1.5%;
    border-radius: 0.7em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    font-size: 1.3em;
    text-align: justify;
    margin-right: 2em;
    margin-left: 2em;
}

.description1 h2,
.description h2 {
    text-align: center;
    font-size: 1.2em;
    font-family: Arial, Helvetica, sans-serif;
}

.description p {
    margin-left: 2em;
    margin-right: 2em;
    margin-bottom: 1px;
    line-height: 1.6em;
}

.description1 p {
    margin-top: 5%;
    margin-bottom: 0.1%;
    margin-left: 1.7em;
    margin-right: 1.7em;
    line-height: 1.3em;
}

.description1 h4 {
    font-family: 'Georgia', serif;
    margin-left: 1.7em;
    margin-right: 1.7em;
    font-size: 115%;
    margin-bottom: 0.1em;
    line-height: 0em;
}

.bottom-content {
    display: flex;
    margin-top: 2em;
}

/* Description1 */
.description1 {
    flex: 40%;
    background-color: #ffffff;
    padding: 1%;
    margin-right: 2%;
    border-radius: 0.7em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    font-size: 1.2em;
    text-align: justify;
}

/* Video et carte */
.video-map {
    flex: 60%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}

/* Video */
.video-map video {
    width: 90%;
    border-radius: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Carte */
.video-map iframe {
    width: 90%;
    height: 50%;
    border: 3px solid white;
    border-radius: 1em;
}

.conteneur-horizontale {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    position: relative; 
    overflow: hidden; 
    height: 600px;
}

.images-horizontale {
    width: 40%; 
    height: 60%; 
    border-radius: 0.5em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover; 
    transition: all 0.5s ease;
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%) scale(0.8); 
    transition: transform 0.5s ease;
}

.images-horizontale.active {
    transform: translateY(-50%) scale(1.15); 
}

.images-horizontale.left {
    left: -15%; 
    transform: translateY(-50%) scale(0.8); 
}

.images-horizontale.right {
    right: -15%;
    transform: translateY(-50%) scale(0.8); 
}



footer {
    background-color: #222222;
    padding: 1em;
    color: white;
    text-align: center;
    font-size: 0.9em;
    margin-top: 2em;
}

footer p {
    margin: 0em;
}
