body {
    min-height: 100vh;
    margin: 0;
    font-family: Arial;
    display: flex;
    flex-direction: column;
    background-color: aliceblue;
    padding: 0;
}


.top-titre{
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color: #001f3f;
    color: aliceblue;
    margin-bottom: 100px;
    box-sizing: border-box;
}

.top{
    flex: 1 0 auto;
}

.photo-section{
    display: flex;
    justify-content: center;
    gap:40px;
    padding: 40px;
    flex-wrap: wrap;
}

.photo-container{
    width: 300px;
    height: 220px;
}
.photo-container img{
    width: 100%;
    height: 100%;
}

.photo-container .titre{
    background: #001f3f;
    color: aliceblue;
    width: 100%;
    text-align: center;
    padding: 10px;
    opacity: 0;
    font-size: 16px;
}

.photo-container:hover .titre{
    opacity: 1;
}

.description-section{
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    background-color: white;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #001f3f;
    border-color: #001f3f;
}
/* ---- FOOTER ---- */
footer {
    width: 100%;
    background-color: #001f3f;
    padding-bottom: 20px;
}

.contenu-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* S'adapte aux écrans */
    padding: 0 20px;
    color: aliceblue;
}

.footer-section h3 {
    text-decoration: underline;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style-type: none; /* Enlève les puces */
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-section a {
    color: aliceblue;
    text-decoration: none;
    
}

.footer-section a:hover {
    text-decoration: underline;
}