/* commentaires */
/*body {
    display: flex;
    margin: 0;
    padding-left: 11em;
    color: #aa1b13;
    font-family: Georgia, "Times New Roman", Times, serif;
    background-color: #facb03;
}

rouge foncé aa1b13
jaune facb03
brun c86603
orange brique f34a29
violet foncé 904365
tilleul 95b282
parme éteint 8b8a8f
*/

@font-face {
  font-family: 'Liberate';
  src: url('/Pictures/Liberate.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Style de base */
body {
    margin: 0;
    background-color: #facb03;
}

header {
    /*position: fixed;*/
    width: 100%;
    z-index: 1000;
    top: 0;

    text-align: center;

    background: #904365;
    font-family: 'Liberate', cursive;
    font-size: 3.5em;
    color: white; /*#95b282;*/
}

main {
    padding: 2em;
    margin-left: 150px;

    color: #aa1b13;
    font-family: 'Helvetica', Geneva, Arial, SunSans-Regular, sans-serif;
}

h1 {
    font-weight: bold;
    font-size: 20px;
}

h2 {
    font-size: 1em;
}

li a {
    padding: 10px;
    font-weight: bold;
}


#menu-toggle {
    position: absolute;
    left: 0;
    background: none;
    border: none;
    font-size: 25px;
    color: white;
    cursor: pointer;
    /*display: none;  caché par défaut sur desktop */
}

.sidebar {
    position: fixed;
    background: #95b282;

    padding-top: 80px;
    width: 150px;
    height: 100vh;
    top: 0;
    left: 0;

    font-weight: bold;
    text-align: center;
    color: #aa1b13;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li a {
    display: block;
    padding: 4px;
    text-decoration: none;
}
    /* Menu burger (visible sur mobile) */


/* 🔄 Responsive pour mobiles */
@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    header {
        font-size: 2.5em;
    }

    main {
        margin-left: 0;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

}
