body{
    margin: 0;
    padding: 0;
    font-family: 'Didact Gothic', sans-serif;
    background-color: #FBF3E4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: white;
}

/* En-tête */

.site-header{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.logo-link{
    flex: 0 0 auto;
}

.logo{
    width: 120px;
    display: block;
}

.header-titles{
    flex: 1;
    text-align: center;
    padding-right: 120px;
    box-sizing: border-box;
}

.titre{
    margin: 0;
    font-size: 35px;
    line-height: 1.2;
    font-weight: bold;
}

h2{
    margin: 10px 0 0 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: normal;
}

/* Zone principale */

.home-layout{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px 30px 20px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: 260px minmax(320px, 1fr) 260px;
    gap: 20px;
    align-items: start;
}

/* Colonnes menu */

.menu-column{
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
}

.menu-item{
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-left .menu-item{
    justify-content: flex-start;
}

.menu-right .menu-item{
    justify-content: flex-start;
}

/* Boutons */

.menu-button{
    width: 160px;
    min-height: 50px;
    margin: 0;
    padding: 10px 12px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    line-height: 1.25;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 5px black;
}

.bleu{
    background-color: #23A3D9;
}

.vert{
    background-color: #26A648;
}

.bleu:hover{
    background-color: #26A648;
}

.vert:hover{
    background-color: #23A3D9;
}

/* Pictos */

.picto{
    width: 50px;
    height: 50px;
    display: block;
    flex: 0 0 auto;
}

/* Image centrale */

.home-image-wrap{
    display: flex;
    justify-content: center;
}

.accueil{
    width: 100%;
    max-width: 700px;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #CCC;
    background-color: #F3F3F3;
    box-shadow: 0 0 17px #999;
}

/* Footer */

footer{
    margin-top: auto;
    background-color: #23A3D9;
    padding: 12px 10px;
    box-sizing: border-box;
}

footer a{
    display: block;
    width: 40px;
    margin: 0 auto;
}

.facebook{
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto;
}

footer p{
    margin: 8px 0 0 0;
    text-align: center;
    color: white;
    font-size: 15px;
    line-height: 1.4;
}

/* Écrans moyens */

@media screen and (max-width: 1100px){
    .home-layout{
        grid-template-columns: 220px minmax(280px, 1fr) 220px;
        gap: 16px;
    }

    .menu-button{
        width: 145px;
        font-size: 14px;
    }

    .picto{
        width: 44px;
        height: 44px;
    }

    .header-titles{
        padding-right: 80px;
    }
}

@media screen and (max-width: 900px){
    .home-layout{
        grid-template-columns: 190px minmax(240px, 1fr) 190px;
        gap: 14px;
    }

    .menu-button{
        width: 130px;
        font-size: 13px;
    }

    .picto{
        width: 40px;
        height: 40px;
    }

    .titre{
        font-size: 30px;
    }

    h2{
        font-size: 18px;
    }

    .header-titles{
        padding-right: 40px;
    }
}

/* Mobile */

@media screen and (max-width: 700px){
    .site-header{
        flex-direction: column;
        gap: 10px;
        padding: 12px 10px 0 10px;
    }

    .logo{
        width: 80px;
        margin: 0 auto;
    }

    .header-titles{
        padding-right: 0;
    }

    .titre{
        font-size: 28px;
    }

    h2{
        font-size: 16px;
    }

    .home-layout{
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 15px 25px 15px;
    }

    .home-image-wrap{
        display: none;
    }

    .menu-column{
        gap: 12px;
        padding-top: 0;
    }

    .menu-item{
        width: 100%;
        justify-content: center;
    }

    .picto{
        display: none;
    }

    .menu-button{
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        font-size: 15px;
    }

    footer p{
        font-size: 12px;
    }

    .facebook{
        width: 28px;
        height: 28px;
    }
}

/* Très petits écrans */

@media screen and (max-width: 480px){
    .logo{
        width: 60px;
    }

    .titre{
        font-size: 22px;
    }

    h2{
        font-size: 13px;
    }

    .home-layout{
        padding: 12px 10px 20px 10px;
    }

    .menu-button{
        max-width: 100%;
        min-height: 48px;
        font-size: 14px;
        padding: 10px 8px;
    }

    .facebook{
        width: 24px;
        height: 24px;
    }

    footer p{
        font-size: 11px;
    }
}