/* --- Global --- */
body {
color:black;
background-color:#e9ecef;
background-image:url(fond.jpg);
margin:0;
background-repeat:no-repeat;
}


label, #toggle {
    display: none; /* Caché sur grand écran */
}

nav {
    margin: 100px auto;
    width: 60%;
    height: 40px; /* Hauteur fixe sur PC */
    background: #0272a7; /*#48435C;*/
    font-size:135%; font-family:Arial, Helvetica, sans-serif;line-height:100%;text-align:center;
 /* Rounded Corners */
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

nav .main_pages {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav .main_pages a {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;  /*100px par defaut*/
    text-decoration: none;
    font-family: Arial, sans-serif;
    color: white;
    transition: 0.3s;
 /* Rounded Corners */
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

nav a:hover {
    background: #2A2766; /*5A5766*/
}

/* --- Responsive (Mobile / Tablette) --- */
@media screen and (max-width: 1200px) {

    nav {
        width: 90%; /* Plus large sur mobile */
        height: auto; /* IMPORTANT : laisse le nav grandir avec le menu */
        min-height: 50px;
        padding: 10px 0;
    }

    nav .main_pages {
        display: none; /* Caché par défaut */
        flex-direction: column;
        background: #48435C;
        /* height: 220px; -> optionnel, auto est souvent mieux */
    }

    nav .main_pages a {
        width: 80%; /* Toute la largeur */
        height: 60px;
    }

    label {
        display: flex; /* On affiche le burger */
        width: 50px;
        margin: 0 auto;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }

    /* CORRECTION : On utilise ~ car le label est entre l'input et la div */
    #toggle:checked ~ .main_pages {
        display: flex;
    }
}
