/* ---- PAGE 1 ----*/

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

.page-content {
    text-align: center;
    flex: 1 0 auto; /* Place le footer en bas*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

}

.description{
    margin-bottom: 50px;
    color: #001f3f;
}

.button-content {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 60px;              
    width: 100%;
    max-width: 800px;
}

.button {
    width: 100%;      
    display: flex;
    justify-content: center;
}


.button-index-0 {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 60px;              
    width: 100%;
    max-width: 800px;
}

.button-index-1 {
    width: 100%;      
    display: flex;
    justify-content: center;
}

.button-index-2 {
    display: block;          /* Contrôler la largeur */
    width: 80%;                
    box-sizing: border-box;  /* Le padding ne déforme pas la largeur */
    background-color: lightblue;
    color: #001f3f;
    text-decoration: none;
    font-weight: bold;
    border: 3px solid transparent;
    padding: 20px 40px;
    font-size: 22px;
    border-radius: 80px;
    transition: all 0.3s ease; /*Déplacement plus fluide */
    cursor: pointer;
}

.button-index-2:hover {
    background-color: lightblue;
    color: #001f3f;
    border-color: lightblue;
    transform: translateY(-5px);
}


/* ---- 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;
}