/* 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;
}

.conteneurBlanc {
  background-image: none;
  background-color: rgb(255, 255, 255);
  color: black;
}

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url("../img/salle-min.jpg");
  -o-object-fit: fill;
     object-fit: fill;
  background-position: top;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header img {
  display: block;
  margin: auto;
  width: 80%;
  height: 40%;
}
header .conteneurHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-left: 5%;
}
header .conteneurBoutons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
header .conteneurReseaux {
  display: flex;
  margin-left: 3%;
}
header .btn {
  color: #FEFAE0;
  font-size: 2rem;
  transition: all 0.2s;
}
header .btn:hover {
  color: #BC6C25;
}

.reseaux {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: #FEFAE0;
  color: #BC6C25;
  width: 15rem;
  margin: auto;
  margin-top: 8rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  transition: all 0.2s;
}
.hero:hover {
  color: #FEFAE0;
  background-color: #BC6C25;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 6%;
  height: 25px;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

@media (max-width: 760px) {
  .conteneurHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .conteneurBoutons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .btn {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .reseaux,
  .hero {
    display: none;
  }
}
.propos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.propos .propos2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.propos .propos2 h2 {
  font-size: 2rem;
  text-align: center;
  color: #BC6C25;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.propos .propos2 a.suite {
  margin-bottom: 5rem;
}
.propos .propos2 p {
  width: 60%;
  color: #BC6C25;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 130%;
}
.propos .propos2 .suite {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  color: #BC6C25;
  background-color: #FEFAE0;
  margin-bottom: 2rem;
  transition: all 0.2s;
}
.propos .propos2 .suite:hover {
  color: #FEFAE0;
  background-color: #BC6C25;
}
.propos .propos2 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-color: black;
  padding: 0.5rem;
  padding-right: 0;
  height: 10rem;
}
.propos .propos3 {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  background-position: center;
  background-size: cover;
  flex-direction: column;
  background-color: black;
  padding: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.1rem;
  width: 50%;
}
.propos .propos3 img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 13rem;
}

@media screen and (max-width: 760px) {
  .propos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .propos .propos2 {
    width: 100%;
  }
  .propos p {
    width: 150%;
  }
  .propos .propos2 img {
    padding-right: 0.5rem;
    padding-bottom: 0;
    width: 100%;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .propos .propos3 {
    width: 100%;
  }
  .propos .propos3 img {
    width: 100%;
  }
  img {
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .infolettre {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .infolettre .infoGauche {
    margin-bottom: 1rem;
  }
  .infolettre .infoDroit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .infolettre .infoDroit form {
    width: 200%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .infolettre .infoDroit input.courriel,
  .infolettre .infoDroit input.inscrire {
    width: 100%;
    gap: 2rem;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
  }
  .infolettre .infoDroit input.courriel {
    margin-bottom: 1rem;
    height: 2rem;
  }
  .infolettre .infoDroit input.inscrire {
    height: 2rem;
    width: 50%;
  }
}
.titreCommentaires {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  color: #BC6C25;
}

.grilleCommentaires {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 5rem;
  width: 75%;
  margin: auto;
  padding-bottom: 4rem;
}

.commentaires {
  flex: 1 1 calc(50% - 2rem);
  padding: 1rem;
  box-sizing: border-box;
  color: #BC6C25;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 130%;
}

.note {
  color: #BC6C25;
  margin-top: 1rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

@media screen and (max-width: 760px) {
  .grilleCommentaires {
    display: flex;
    flex-direction: column;
  }
}
.infolettre {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../img/kobby-mendez-gVFEAmRpvjQ-unsplash.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}
.infolettre p {
  color: #BC6C25;
  font-size: 1.2rem;
}
.infolettre h2 {
  font-size: 2rem;
  color: #BC6C25;
  margin-bottom: 1rem;
}
.infolettre .infoGauche {
  text-align: center;
}
.infolettre .infoGauche p {
  font-family: Arial, Helvetica, sans-serif;
}
.infolettre .infoDroit {
  display: flex;
  flex-direction: column;
  width: 20%;
}
.infolettre .infoDroit .courriel {
  background-color: #FEFAE0;
  width: 100%;
  height: 50%;
}
.infolettre .infoDroit .inscrire {
  background-color: #FEFAE0;
  margin: auto;
  width: 50%;
  height: 70%;
  margin-top: 1rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  transition: all 0.2s;
}
.infolettre .infoDroit .inscrire:hover {
  color: #FEFAE0;
  background-color: #BC6C25;
  cursor: pointer;
}
.infolettre .infoDroit input {
  display: flex;
  flex-direction: column;
  color: #BC6C25;
}
.infolettre .infoDroit input::-moz-placeholder {
  color: #BC6C25;
}
.infolettre .infoDroit input::placeholder {
  color: #BC6C25;
}

@media screen and (max-width: 760px) {
  .infolettre .infoDroit {
    width: 40%;
  }
}
section.footer {
  display: flex;
  justify-content: space-around;
  margin-top: 5rem;
  color: #BC6C25;
}
section.footer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.footer .carteAccueil {
  width: 30%;
  height: 20%;
}
section.footer h2 {
  font-size: 2rem;
}
section.footer .conteneurAdresseAccueil h2 {
  margin-bottom: 4rem;
}
section.footer .conteneurAdresseAccueil p {
  margin-bottom: 5rem;
}
section.footer .conteneurAdresseAccueil p.retirerMarge {
  margin-bottom: 0;
}
section.footer .conteneurContactezAccueil h2 {
  margin-bottom: 2rem;
}
section.footer .conteneurContactezAccueil img.logoFooter {
  width: 15.5%;
  height: 16%;
  margin-top: 1rem;
}
section.footer .conteneurContactezAccueil .telephone {
  margin-top: 3rem;
}
section.footer .conteneurContactezAccueil .conteneurReseauxAccueil {
  margin-top: 4rem;
  display: flex;
}

.rights {
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3rem;
  padding-bottom: 1rem;
}

@media (max-width: 1000px) {
  section.footer {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  section.footer .conteneurAdresseAccueil h2 {
    font-size: 2.5rem;
  }
  section.footer .conteneurContactezAccueil h2 {
    font-size: 2.5rem;
  }
  section.footer img.carteAccueil {
    width: 80%;
    padding: 0;
    margin: 0;
  }
  section.footer .conteneurContactezAccueil img.logoFooter {
    width: 30%;
  }
  section.footer .conteneurContactezAccueil img.reseaux {
    display: flex;
  }
  section.footer > div {
    width: 100%;
    max-width: 500px;
  }
  section.footer h2 {
    font-size: 1.5rem;
  }
  .conteneurContactezAccueil .conteneurReseauxAccueil {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
h1.menu {
  text-align: center;
  font-size: 3rem;
  margin: 5rem;
}

h2.menu {
  font-size: 3rem;
  text-align: center;
  padding-bottom: 5rem;
  padding-top: 8rem;
}
h2.menu.plat {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15%;
  margin-right: 15%;
}
h2.menu.plat::before, h2.menu.plat::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid black;
}
h2.menu.plat::before {
  margin-right: 1rem;
}
h2.menu.plat::after {
  margin-left: 1rem;
}

main.menu {
  background-image: none;
  background-color: rgb(255, 255, 255);
  color: black;
}

section.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-left: 15%;
  margin-right: 15%;
}
section.menu p {
  font-family: Arial, Helvetica, sans-serif;
}
section.menu .menuNom {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
section.menu .menuDescription {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
section.menu .menuCategorie {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
section.menu .menuPrix {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  display: flex;
  justify-content: end;
}
section.menu.dessert {
  margin-bottom: 10rem;
  padding-bottom: 10rem;
}
section.menu .btnModifications {
  display: flex;
  justify-content: end;
  gap: 1rem;
}
section.menu .btnModifications .modifierUtilisateurs {
  font-family: Arial, Helvetica, sans-serif;
}
section.menu .btnModifications .modifierUtilisateurs:hover {
  color: #008b8b;
}
section.menu .btnModifications .supprimerUtilisateurs {
  background: none;
  border-color: #ff0000;
  cursor: pointer;
}
section.menu .btnModifications .supprimerUtilisateurs:hover {
  background-color: #ff0000;
}

main.menu {
  background-color: #ffffff;
  color: black;
}

.carte {
  padding-top: 8rem;
  display: block;
  margin: auto;
  width: 60%;
  height: 40rem;
}

.conteneurAdresse {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.conteneurAdresse h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.conteneurContactez {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.conteneurContactez p.pubG6 {
  margin-bottom: 1rem;
}
.conteneurContactez h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

.conteneurContact {
  display: flex;
  justify-content: space-between;
  width: 55%;
  margin: 0 auto;
}

.proposTexte h2 {
  margin-top: 5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2rem;
}
.proposTexte p {
  width: 55%;
  margin: auto;
  padding-bottom: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 130%;
}
.proposTexte p.bottomText {
  padding-bottom: 3rem;
}

.admin {
  display: flex;
  justify-content: center;
  margin-top: 12rem;
}
.admin .admin1 {
  margin-right: 15rem;
  font-size: 3rem;
  color: white;
  transition: all 0.2s;
}
.admin .admin1:hover {
  color: #BC6C25;
}
.admin .admin2 {
  margin-left: 15rem;
  font-size: 3rem;
  color: white;
  transition: all 0.2s;
}
.admin .admin2:hover {
  color: #BC6C25;
}

.admin3 {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
  font-size: 2rem;
  color: white;
  transition: all 0.2s;
}
.admin3:hover {
  color: #BC6C25;
}

.gestionTitre {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 1rem;
  margin-top: 10rem;
}

.gestionH2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

section.connexion {
  text-align: center;
}
section.connexion input {
  width: 15rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem auto;
}

h1.ajoutUtilisateurs {
  text-align: center;
  font-size: 4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

h2.ajoutUtilisateurs {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.conteneurFormulaireGestion form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 1rem;
}
.conteneurFormulaireGestion form input {
  height: 2rem;
  width: 15rem;
}
.conteneurFormulaireGestion form input.btn {
  width: 8rem;
  margin-top: 2rem;
}

.listeEmployes {
  margin: 1rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  text-align: start;
}
.listeEmployes .conteneurListeEmployes {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.listeEmployes .conteneurListeEmployes p {
  text-align: end;
}
.listeEmployes .conteneurListeEmployes .modifierUtilisateurs {
  font-family: Arial, Helvetica, sans-serif;
}
.listeEmployes .conteneurListeEmployes .modifierUtilisateurs:hover {
  color: #008b8b;
}
.listeEmployes .conteneurListeEmployes .supprimerUtilisateurs {
  background: none;
  border-color: #ff0000;
  cursor: pointer;
}
.listeEmployes .conteneurListeEmployes .supprimerUtilisateurs:hover {
  background-color: #ff0000;
}

a.ajoutCategorie {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}
a.ajoutCategorie:hover {
  color: #BC6C25;
}

.conteneurAjoutMenu {
  margin: auto;
  width: 30%;
}
.conteneurAjoutMenu input.inputMenuTitre {
  height: 2rem;
  font-size: 1.5rem;
}
.conteneurAjoutMenu input.inputMenuDescription {
  height: 5rem;
  font-size: 1.5rem;
}
.conteneurAjoutMenu form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.listeCategorie {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.listeCategorie .conteneurListeCategorie {
  display: flex;
  gap: 3rem;
  margin-bottom: 1rem;
}

.conteneurFormulaireRepas form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 1rem;
}
.conteneurFormulaireRepas form input {
  height: 2rem;
  width: 15rem;
}
.conteneurFormulaireRepas form input.btn {
  width: 8rem;
  margin-top: 2rem;
}
.conteneurFormulaireRepas .inputMenuDescription {
  margin: auto;
  width: 15.5%;
  height: 2rem;
}
.conteneurFormulaireRepas .enregistrerModification {
  width: 15%;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  background-image: url("../img/parchemin-min.jpg");
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  color: white;
}

img {
  width: 200px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center;
}

a {
  text-decoration: none;
}

p.msg {
  text-align: center;
  margin: 1rem;
}
p.msg.succes {
  color: green;
}
p.msg.erreur {
  color: red;
}/*# sourceMappingURL=style.css.map */