@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --blanc: #FFFFFF;
  --noir: #212121;
  --gris: #737373;
  --dore: #E6C79B;
  --brun: #B28564;
}

.msg {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.msg span {
  font-size: 2rem;
}

.succes {
  background-color: #80cc60;
  color: #1e2b19;
}

.erreur {
  background-color: rgb(231, 119, 119);
  color: rgb(100, 15, 15);
}

body {
  width: 100vw;
  max-width: 100vw;
  justify-content: center;
  font-family: "libre-franklin", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--blanc);
  background-color: var(--noir);
}
body main {
  position: relative;
}

a {
  font-family: "libre-franklin", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  color: var(--blanc);
}

input[type=submit] {
  font-family: "libre-franklin", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.25rem;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

h2 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 3px;
}

h3 {
  font-size: 3rem;
  font-weight: 700;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dore);
}

hr {
  border-top: 6px solid var(--blanc);
}

nav {
  height: 5rem;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--noir);
  border-bottom: 6px solid var(--blanc);
}
nav .logo img {
  margin-left: 1.25rem;
  height: 4rem;
}
nav .navigation .material-symbols-outlined {
  font-size: 3rem;
  margin-right: 1.25rem;
}
nav .navigation .material-symbols-outlined:hover {
  color: var(--dore);
  cursor: pointer;
}
nav .navigation ul {
  display: none;
}

#herobanner {
  position: relative;
}
#herobanner .msg {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#herobanner h1 {
  position: absolute;
  max-width: 15rem;
  left: 10%;
  top: 27%;
  font-size: 5rem;
  font-weight: 700;
}
#herobanner div {
  height: 100vh;
  width: 100vw;
}
#herobanner div img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#menu,
#menu-admin {
  margin: 11.5rem 5%;
}
#menu .liste h3,
#menu-admin .liste h3 {
  text-transform: uppercase;
  font-size: 2rem;
}
#menu .liste hr,
#menu-admin .liste hr {
  margin-bottom: 3rem;
}
#menu .liste div,
#menu-admin .liste div {
  width: 100%;
  height: 11.5rem;
  display: none;
}
#menu .liste div .image-categorie,
#menu-admin .liste div .image-categorie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#menu .liste .plat,
#menu-admin .liste .plat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#menu .liste .plat:not(:first-child),
#menu-admin .liste .plat:not(:first-child) {
  margin-top: 2rem;
}
#menu .liste:not(:first-child),
#menu-admin .liste:not(:first-child) {
  margin-top: 3rem;
}

#apropos div .boite-image {
  width: 100vw;
  height: 25rem;
}
#apropos div .boite-image .image-apropos {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#apropos div .boite2 {
  padding: 11.5rem 5% 4rem;
  background-color: var(--blanc);
  color: var(--noir);
}
#apropos div .boite2 h2 {
  font-size: 3rem;
  width: 18rem;
  margin-bottom: 4rem;
}
#apropos div .boite4 {
  background-color: var(--blanc);
  color: var(--noir);
}
#apropos div .boite4 hr {
  border-color: var(--noir);
}
#apropos p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}
#apropos .boite3,
#apropos .boite4,
#apropos .boite5 {
  padding: 4rem 1.25rem;
}
#apropos .boite3 h3,
#apropos .boite4 h3,
#apropos .boite5 h3 {
  font-size: 2rem;
}
#apropos .boite3 hr,
#apropos .boite4 hr,
#apropos .boite5 hr {
  margin-bottom: 2rem;
}
#apropos .boite5 {
  color: var(--dore);
}

#critiques {
  background-image: url("../img/burger.jpg");
  background-position-x: 60%;
  background-size: cover;
}
#critiques .filtre {
  padding: 11.5rem 5%;
  background-color: rgba(33, 33, 33, 0.6980392157);
}
#critiques .filtre h2 {
  font-size: 2.6rem;
  width: 18rem;
  margin-bottom: 5rem;
}
#critiques .filtre .critique {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
#critiques .filtre .critique div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#critiques .filtre .critique div .texte-italic {
  font-style: italic;
}
#critiques .filtre .critique div .critique-bold {
  font-weight: 600;
  margin: 0 auto;
}

#contact {
  padding: 11.5rem 0;
  background-color: var(--blanc);
  color: var(--noir);
}
#contact .texte-infos {
  margin: 0 5%;
}
#contact .texte-infos h2 {
  font-size: 3rem;
  width: 18rem;
  margin-bottom: 3rem;
}
#contact .texte-infos hr {
  border-color: var(--noir);
  margin-bottom: 3rem;
}
#contact .texte-infos div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
#contact .texte-infos div p {
  font-weight: 500;
}
#contact .map {
  height: 20rem;
  background-color: var(--noir);
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .map iframe {
  width: 90%;
  height: 90%;
}

#footer {
  margin: 6rem 5%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#footer .nav-footer,
#footer .infolettre,
#footer .medias,
#footer .droits-accès {
  display: flex;
  flex-direction: column;
}
#footer .nav-footer {
  gap: 1.5rem;
}
#footer .nav-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#footer .nav-footer ul li a {
  font-size: 1.25rem;
}
#footer .infolettre {
  gap: 1.5rem;
}
#footer .infolettre div form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .infolettre div form label {
  font-size: 1.25rem;
  font-weight: 500;
}
#footer .infolettre div form input[type=text] {
  height: 2rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--gris);
  font-size: 1.25rem;
  color: #FFFDF2;
}
#footer .infolettre div form input[type=submit] {
  background-color: var(--brun);
  color: var(--blanc);
}
#footer .infolettre div form input[type=submit]:hover {
  background-color: #9c5d30;
}
#footer .medias {
  gap: 1.25rem;
}
#footer .medias .reseaux-sociaux {
  display: flex;
  gap: 1.5rem;
}
#footer .svg-img {
  filter: invert(100%);
}
#footer .droits-accès {
  gap: 2rem;
}
#footer .droits-accès p,
#footer .droits-accès a {
  color: var(--gris);
}

.nav-admin {
  position: relative;
}
.nav-admin a {
  margin-right: 5%;
}

.formulaire {
  margin: 0 5%;
  background-color: var(--blanc);
  color: var(--noir);
}/*# sourceMappingURL=style.css.map */