/* --- COLORS ---
red-orange : #d2483d
ight-gray : #f3f3f3
*/

/* FONTS */
@font-face {
    font-family: "Bebas neue";
    src: url("../assets/fonts/bebasneue-regular-webfont.woff2"), format('woff2');
    font-family: "Montserrat";
    src: url("../assets/fonts/montserrat-variablefont_wght-webfont.woff2"), format('woff2');
}

* {
    padding: 0%;
    margin: 0%;
    list-style-type: none;
    font-style: none;
}
body {
    background-color: #f3f3f3;
    border: 1px solid black;
    font-family: "Montserrat";
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
}
nav {
    padding: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 15px;
    margin-bottom: 20px;
}
.nav-links {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #d2483d;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -100%;
    transition: all 0.5s ease;
}
.menu-hamburger {
    display: block;
    z-index: 1;
}
.mobile-menu {
    margin-left: 0;
    width: 100%;
}
nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}
nav ul li {
    margin: 15px 0;
}
nav a {
    margin-bottom: 40px;
    color: black;
    font-family: "Bebas neue";
    font-size: 5vh;
}
.active {
    text-decoration: underline white 3px;
    font-size: 6vh;
}
h1 {
    font-family: "Bebas neue";
    font-size: 40px;
    text-align: center;
    margin: 15px 0;
}
p {
    text-align: center;
    font-family: "Montserrat";
    font-size: 16px;
    padding: 5px 0;
    line-height: 1.5;
}
.red-text {
    color: #d2483d;
}
.text-highlight {
    font-weight: 700;
    font-size: 16px;
}
.cta-button {
    display: inline-block;
    background-color: black;
    color: white;
    height: 70px;
    width: 300px;
    margin: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.contenair {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}
.cta-button a {
    color: white;
}
h2 {
    font-family: "Bebas neue";
    font-size: 25px;
    text-align: center;
    margin: 15px 0;
    text-decoration: underline #d2483d 4px;
    margin-top: 30px;
}
.resto {
    margin: 10px;
    display: flex;
    flex-flow: column wrap;
    align-items: baseline;
}
.resto img {
    margin: 5px;
}
.cta {
    background-color: #d2483d;
}
.cta > p {
    font-size: 26px;
    color: #f3f3f3;
    margin-top: 5px;
    margin-bottom: -10px;
}
article {
    width: 250px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5px;
}
.reseaux img {
    margin: 20px 0;
}
.contact {
    width: 250px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5px;
}
a {
    color: black;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
}
.contact a:focus {
    font-size: 17;
}
footer {
    background-color: black;
    display: flex;
    flex-flow: row wrap;
    height: 70px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.fb-logo {
    color: #f3f3f3;
    border: 2px solid #f3f3f3;
    padding: 8px;
    padding-left: 12px;
    border-radius: 0.25em;
    padding-bottom: 0;
    padding-right: 4px;
    font-weight: 900;
    font-size: 15px;
}
.menu_p  {
    width: 309px;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 5px;
}
/* ECRANS DE PLUS DE 600px */
@media screen and (min-width :600px) {
    /* .menu-hamburger {
        display: none;
        position: absolute;
        top: 50px;
        right: 50px;
    }
    nav ul {
        display: flex;
        justify-content: space-between;
    }
    nav {
        width: 100%;
        position: absolute;
        padding: 30px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    nav ul li {
        margin: 0 5px;
    }
    .active {
        text-decoration: underline #d2483d;
    } */
}