/**
 * Règles CSS valables sur l'espace public de Restodujour
 */
/** Global **/
body {
    text-transform: uppercase;
}
body>* {
    width: 100%;
    margin: 0 auto;
}

/** Header **/
header {
    padding-top: 10px;
}
header h1 {
    margin-bottom: 0;
}
header img {
    width: 90%;
    margin: 0 auto;
    display: block;
}
header>h1>span {
    position: absolute;
    left: -999999px;
}
header h1 .img-fit {
    margin-top: 10px;
}


/** Images **/
.img-hr {
    max-width: 85%;
}

/** Footer **/
footer {
    padding: 15px 0;
    font-size: 80%;
}
footer a {
    color: white;
    font-family: Arial;
}
footer ul {
    list-style-type: none;
}
footer hr {
    width: 50%;
    margin: auto;
}
footer > section {
    padding: 12px 0;
}

/** Menus **/
.menus {
    padding-left: 10px;
    padding-right: 10px;
}
.menus article {
    margin-bottom: 20px;
}
.menus .encart-menu {
    text-align: left;
    border-radius: 10px;
    display: block;
    padding: 5px 20px 10px;
    color: white;
    text-decoration: none;
}
.menus .encart-menu:nth-of-type(n) {
    background-color: #ef8114; /* jaune */
}
.menus .encart-menu:nth-of-type(2n) {
    background-color: #1ca077; /* vert */
}
.menus .encart-menu:nth-of-type(3n) {
    background-color: #e24514; /* orange */
}
.menus .encart-menu:nth-of-type(4n) {
    background-color: #3f0647; /* violet */
}
.menus ul {
    list-style-position: inside;
    text-transform: none;
}
.menus a {
    text-transform: none;
}
.menus h3 {
    padding-top: 10px;
    font-size: 150%;
}
.menu>section {
    padding-bottom: 10px;
}
.menus p small {
    text-transform: none;
}