@charset "UTF-8";
/***************
** BOILERPLATE
***************/
html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #F0F1F2;
  background-color: #000000;
  box-sizing: border-box;
}

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

/***************
** GÉNÉRAL
***************/
h1,
h2,
h3 {
  font-family: "Quantico", sans-serif;
  text-align: center;
}

h1 {
  font-size: 4.25rem;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Quantico", sans-serif;
  text-transform: uppercase;
}

p {
  margin-top: 0.75rem;
  line-height: 1.25;
}

a {
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  color: #F0F1F2;
  text-decoration: none;
  text-transform: uppercase;
}

span {
  display: block;
  font-size: 1.5rem;
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}

ul {
  list-style: none;
}

section {
  margin: 4.375rem auto;
}

#app {
  transition: all 0.5s;
}

#app[v-cloak] {
  opacity: 0;
}

/***************
** UTILITÉS
***************/
ul.vignettes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
ul.vignettes li {
  width: 45%;
  padding: 1em;
  background-color: #6D4C25;
}
ul.vignettes li article {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
ul.vignettes li article img {
  width: 100%;
  margin-right: 1rem;
}

ul.vignettes-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
ul.vignettes-menu li {
  width: 45%;
  padding: 1em;
  background-color: #6D4C25;
}
ul.vignettes-menu li article {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
ul.vignettes-menu li article img {
  width: 100%;
  margin-right: 1rem;
}
@media only screen and (max-width: 1450px) {
  ul.vignettes-menu {
    flex-direction: column;
    align-items: center;
  }
  ul.vignettes-menu li {
    width: 60%;
  }
}
@media only screen and (max-width: 1200px) {
  ul.vignettes-menu {
    flex-direction: column;
    align-items: center;
  }
  ul.vignettes-menu li {
    width: 70%;
  }
}

.btn {
  display: block;
  width: 425px;
  font-size: 1.75rem;
  color: #F0F1F2;
  margin: 0 auto;
  padding: 0.5em 0;
  border: 3px solid #F0F1F2;
  text-align: center;
  background-color: rgba(109, 76, 37, 0.75);
  transition: all 0.25s ease-in-out;
}
.btn:hover {
  background-color: #b9813f;
  color: #000000;
}

.btn-retour {
  display: block;
  width: 425px;
  font-size: 1.75rem;
  color: #F0F1F2;
  margin: 0 auto;
  padding: 0.5em 0;
  border: 3px solid #F0F1F2;
  text-align: center;
  background-color: rgba(109, 76, 37, 0.75);
  transition: all 0.25s ease-in-out;
}
.btn-retour:hover {
  background-color: #b9813f;
  color: #000000;
}
.btn-retour:first-child {
  margin-top: 70px;
}

.btn-ajouter {
  font-size: 1.25rem;
  padding: 0.25em 0.5em;
  color: #000000;
  background-color: #17a2b8;
  transition: all 0.25s ease-in-out;
}
.btn-ajouter:hover {
  background-color: #117a8b;
}

.btn-modifier {
  padding: 0.25em 0.5em;
  color: #000000;
  background-color: #ffc107;
  transition: all 0.25s ease-in-out;
}
.btn-modifier:hover {
  background-color: #d39e00;
}

.btn-supprimer {
  padding: 0.25em 0.5em;
  color: #000000;
  background-color: #dc3545;
  transition: all 0.25s ease-in-out;
}
.btn-supprimer:hover {
  background-color: #bd2130;
}

div.separateur-court {
  width: 60%;
  height: 5px;
  margin: 0 auto;
  background-color: #b9813f;
}

div.separateur-long {
  width: 85%;
  height: 5px;
  margin: 0 auto;
  background-color: #b9813f;
}

div.separateur-footer {
  width: 75px;
  height: 5px;
  margin: 1rem 0;
  background-color: #b9813f;
}

/***************
** MESSAGES SUCCÈS OU ERREURS
***************/
.msg {
  padding: 0.5em 1em;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg .material-icons {
  margin-right: 0.5rem;
}
.msg span {
  margin: 0;
}
.msg.erreur {
  background-color: lightcoral;
  color: darkred;
}
.msg.succes {
  background-color: lightgreen;
  color: green;
}

/***************
** NAVIGATION
***************/
nav {
  font-size: 1.25rem;
  padding: 1em;
  display: flex;
  justify-content: space-between;
}
nav ul {
  display: flex;
  align-items: center;
}
nav ul li {
  margin-right: 2.5rem;
}
nav ul li:last-child {
  margin-right: 0;
}
nav ul li a {
  transition: all 0.25s ease-in-out;
}
nav ul li a:hover {
  color: #b9813f;
}

/***************
** EN TÊTE
***************/
header.menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding: 2em 2em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
header.menu-header h1 {
  display: inline;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25em 0.75em;
}

/***************
** INFOLETTRE
***************/
section#infolettre {
  width: 100%;
  padding: 2em 0;
  margin-bottom: 145px;
  background-image: url("../img/bg_infolettre.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section#infolettre div.texte-infolettre {
  width: 65%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  padding: 1em;
  text-align: center;
}
section#infolettre div.texte-infolettre h2 {
  text-transform: uppercase;
}
section#infolettre div.texte-infolettre p {
  font-size: 1.5rem;
}
section#infolettre div.conteneur-formulaire {
  width: 65%;
  background-color: #6D4C25;
  margin: 0 auto;
  padding: 2em;
  position: relative;
  top: 105px;
}
section#infolettre div.conteneur-formulaire form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid {
  width: 80%;
  margin-right: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid div.grid-item {
  grid-column: span 1;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid div.grid-item-plein {
  grid-column: span 2;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid input[type=text] {
  width: 100%;
  font-size: 1.25rem;
  height: 2.15rem;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid input[type=text]::-moz-placeholder {
  padding-left: 0.25em;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid input[type=text]::placeholder {
  padding-left: 0.25em;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid input[type=email] {
  width: 100%;
  font-size: 1.25rem;
  height: 2.15rem;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid input[type=email]::-moz-placeholder {
  padding-left: 0.25em;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid input[type=email]::placeholder {
  padding-left: 0.25em;
}
section#infolettre div.conteneur-formulaire form div.conteneur-grid .btn {
  margin-top: 0;
}

/***************
** PIED DE PAGE
***************/
footer {
  width: 100%;
  padding: 0 1.5em;
  margin: 4.375rem 0 0.5rem;
}
footer p {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 2;
  margin: 0;
}
footer div.conteneur-infos {
  display: flex;
}
footer div.conteneur-infos img {
  width: 375px;
  height: 249.25px;
}
footer div.conteneur-infos div.infos-footer {
  width: 100%;
  margin-left: 2%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
footer div.conteneur-infos div.infos-footer div.nav-footer nav {
  padding: 0;
}
footer div.conteneur-infos div.infos-footer div.nav-footer nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer div.conteneur-infos div.infos-footer div.nav-footer nav ul li {
  margin: 0;
}
footer div.conteneur-infos div.infos-footer div.nav-footer nav ul li a {
  font-size: 1.15rem;
  font-family: "Roboto", sans-serif;
  text-transform: none;
  line-height: 2;
}
footer div.conteneur-infos div.infos-footer div.coordonnees a {
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
  text-decoration: underline;
  text-transform: none;
  transition: all 0.25s ease-in-out;
}
footer div.conteneur-infos div.infos-footer div.coordonnees a:hover {
  color: #b9813f;
}
footer ul.sociaux-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
footer ul.sociaux-footer li {
  margin-right: 2.5rem;
}
footer ul.sociaux-footer li:last-child {
  margin-right: 0;
}
footer ul.sociaux-footer li a {
  transition: all 0.25s ease-in-out;
}
footer p.copyright {
  font-size: 0.8rem;
  margin: 1rem 0 0;
  text-align: center;
}

/***************
** ACCUEIL
***************/
body#accueil {
  width: 100%;
}
body#accueil header h1 {
  display: none;
}
body#accueil header div.banniere-accueil {
  width: 100%;
  padding: 2.5em;
  background-image: url("../img/bg_banniere_accueil.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body#accueil header div.banniere-accueil img {
  display: block;
  margin: 0 auto 25%;
}
body#accueil header div.banniere-accueil a {
  margin-bottom: 3rem;
}
body#accueil main section.favoris {
  width: 90%;
}
body#accueil main section.favoris h2 {
  margin-bottom: 2.5rem;
}
body#accueil main section.favoris ul {
  flex-wrap: nowrap;
}
body#accueil main section.favoris ul li {
  width: 25%;
}
body#accueil main section.favoris ul li article {
  flex-direction: column;
}
body#accueil main section.favoris ul li article img {
  margin: 0;
}
body#accueil main section.favoris ul li article h3 {
  margin-top: 1rem;
}
body#accueil main section.bio-accueil {
  width: 100%;
  padding: 2em 0;
  background-image: url("../img/bg_bio_accueil.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body#accueil main section.bio-accueil div {
  width: 55%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 auto 2.5rem;
  padding: 2em;
}
body#accueil main section.bio-accueil div div {
  width: 75%;
  background-color: transparent;
}
body#accueil main section.bio-accueil div div h2 {
  margin-bottom: 2rem;
  text-transform: uppercase;
}
body#accueil main section.bio-accueil div div p {
  font-size: 1.25rem;
}
body#accueil main section.critiques {
  width: 65%;
}
body#accueil main section.critiques h2 {
  margin-bottom: 2.5rem;
}
body#accueil main section.critiques p {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
body#accueil main section.critiques .etoiles {
  text-align: center;
  color: #FFD60B;
}
body#accueil main section.critiques .etoiles i {
  font-size: 2rem;
  margin-right: 0.5rem;
}
body#accueil main section.critiques .etoiles i:last-child {
  margin-right: 0;
}

/***************
** MENU
***************/
body#menu {
  width: 100%;
}
body#menu header {
  background-image: url("../img/bg_menu.jpg");
}
body#menu main {
  margin: 4.375rem 0;
}
body#menu main ul {
  width: 100%;
  margin-bottom: 4.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
body#menu main ul li {
  width: 45%;
  position: relative;
}
body#menu main ul li h2 {
  display: inline;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25em 0.75em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body#menu main ul li img {
  width: 100%;
}

/***************
** ENTRÉES
***************/
body#entrees {
  width: 100%;
}
body#entrees header {
  background-image: url("../img/bg_entrees.jpg");
}
body#entrees a:last-of-type {
  margin-bottom: 4.375rem;
}

/***************
** VÉGÉ
***************/
body#vege {
  width: 100%;
}
body#vege header {
  background-image: url("../img/bg_vege.jpg");
}
body#vege a:last-of-type {
  margin-bottom: 4.375rem;
}

/***************
** REPAS
***************/
body#repas {
  width: 100%;
}
body#repas header {
  background-image: url("../img/bg_repas.jpg");
}
body#repas a:last-of-type {
  margin-bottom: 4.375rem;
}

/***************
** DESSERTS
***************/
body#desserts {
  width: 100%;
}
body#desserts header {
  background-image: url("../img/bg_desserts.jpg");
}
body#desserts a:last-of-type {
  margin-bottom: 4.375rem;
}

/***************
** NOTRE HISTOIRE
***************/
body#notre-histoire {
  width: 100%;
}
body#notre-histoire header {
  background-image: url("../img/bg_histoire.jpg");
}
body#notre-histoire main section.notre-histoire {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
body#notre-histoire main section.notre-histoire > div {
  width: 50%;
}
body#notre-histoire main section.notre-histoire > div img {
  width: 100%;
}
body#notre-histoire main section.notre-histoire > div p {
  font-size: 1.25rem;
}

/***************
** NOUS JOINDRE
***************/
body#nous-joindre {
  width: 100%;
}
body#nous-joindre header {
  background-image: url("../img/bg_joindre.jpg");
}
body#nous-joindre main section.nous-joindre {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
body#nous-joindre main section.nous-joindre > div {
  width: 50%;
}
body#nous-joindre main section.nous-joindre div.conteneur-nous-joindre p {
  margin: 0;
  font-size: 1.25rem;
}
body#nous-joindre main section.nous-joindre div.conteneur-nous-joindre div.nous-joindre {
  margin-top: 3rem;
  text-align: center;
}
body#nous-joindre main section.nous-joindre div.conteneur-nous-joindre div.nous-joindre p:first-child {
  font-size: 1.5rem;
  font-family: "Quantico", sans-serif;
  font-weight: bold;
}
body#nous-joindre main section.nous-joindre div.conteneur-iframe {
  position: relative;
  padding-bottom: 35%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
body#nous-joindre main section.nous-joindre div.conteneur-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***************
** CONNEXION
***************/
body#connexion {
  margin: 2rem 0 0;
  display: flex;
  justify-content: center;
}
body#connexion h1 {
  font-size: 2.5rem;
  margin: 0 0 2rem;
}
body#connexion main {
  text-align: center;
}
body#connexion main img {
  display: block;
  margin: 0 auto;
}
body#connexion main form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body#connexion main form input[type=email] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#connexion main form input[type=password] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#connexion main form input[type=submit] {
  margin-top: 2rem;
}
body#connexion main form input.btn {
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
body#connexion main a.btn {
  margin-top: 2rem;
}
body#connexion section {
  background-color: #6D4C25;
  margin: 2rem 0 0;
  padding: 1.5em;
}

/***************
** ADMINISTRATION
***************/
body#administration h1 {
  font-size: 3rem;
}
body#administration h2 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
}
body#administration p.msg {
  margin: 1rem auto;
  width: 85%;
}
body#administration section.liste-employes {
  width: 85%;
  background-color: #6D4C25;
  margin: 2rem auto;
  padding: 1em;
}
body#administration section.liste-employes p {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
body#administration section.liste-employes ul {
  margin-top: 1rem;
}
body#administration section.liste-employes ul.employe {
  margin: 0;
  padding: 0.25em 0;
  border-bottom: 2px solid #000000;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 2fr 0.5fr 0.5fr;
  grid-auto-rows: 2.5rem;
}
body#administration section.liste-employes ul.employe li.bouton {
  text-align: center;
}
body#administration section.liste-employes ul.titre-colonnes {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 2fr 0.5fr 0.5fr;
  grid-auto-rows: 2.5rem;
}
body#administration section.liste-plats {
  width: 85%;
  background-color: #6D4C25;
  margin: 2rem auto;
  padding: 1em;
}
body#administration section.liste-plats p {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 1rem 0;
}
body#administration section.liste-plats ul {
  margin: 1rem 0;
}
body#administration section.liste-plats ul.plat {
  margin: 0;
  padding: 0.25em 0;
  border-bottom: 2px solid #000000;
  display: grid;
  align-items: center;
  grid-template-columns: 4fr 0.5fr 0.5fr;
  grid-auto-rows: 2.5rem;
}
body#administration section.liste-plats ul.plat li.bouton {
  text-align: center;
}

/***************
** EMPLOYE-CREER
***************/
body#employe-creer h1 {
  font-size: 3rem;
}
body#employe-creer h2 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
}
body#employe-creer section {
  width: 50%;
  background-color: #6D4C25;
  margin: 2rem auto;
  padding: 1em;
}
body#employe-creer section form {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
body#employe-creer section form p {
  text-align: left;
  color: #F0F1F2;
  margin: 0;
}
body#employe-creer section form div {
  width: 85%;
}
body#employe-creer section form input {
  width: 85%;
}
body#employe-creer section form input[type=text] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-creer section form input[type=email] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-creer section form input[type=password] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-creer section form input[type=submit] {
  margin-top: 2rem;
}
body#employe-creer section form select {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-creer section form input.btn {
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/***************
** EMPLOYE-MODIFIER
***************/
body#employe-modifier h1 {
  font-size: 3rem;
}
body#employe-modifier h2 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
}
body#employe-modifier section {
  width: 50%;
  background-color: #6D4C25;
  margin: 2rem auto;
  padding: 1em;
}
body#employe-modifier section form {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
body#employe-modifier section form div {
  width: 85%;
}
body#employe-modifier section form input {
  width: 85%;
}
body#employe-modifier section form input[type=text] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-modifier section form input[type=email] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-modifier section form input[type=password] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-modifier section form input[type=submit] {
  margin-top: 2rem;
}
body#employe-modifier section form select {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#employe-modifier section form input.btn {
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/***************
** PLAT-CREER
***************/
body#plat-creer h1 {
  font-size: 3rem;
}
body#plat-creer h2 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
}
body#plat-creer section {
  width: 50%;
  background-color: #6D4C25;
  margin: 2rem auto;
  padding: 1em;
}
body#plat-creer section form {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
body#plat-creer section form div {
  width: 85%;
}
body#plat-creer section form input {
  width: 85%;
}
body#plat-creer section form textarea {
  width: 85%;
  font-size: 1.25rem;
}
body#plat-creer section form input[type=text] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#plat-creer section form input[type=submit] {
  margin-top: 2rem;
}
body#plat-creer section form select {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#plat-creer section form label {
  font-size: 1.25rem;
  display: flex;
}
body#plat-creer section form label input[type=checkbox] {
  width: 15px;
  margin-left: 0.5rem;
}
body#plat-creer section form label input[type=file] {
  margin-left: 0.5rem;
}
body#plat-creer section form input.btn {
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/***************
** PLAT-MODIFIER
***************/
body#plat-modifier h1 {
  font-size: 3rem;
}
body#plat-modifier h2 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
}
body#plat-modifier section {
  width: 50%;
  background-color: #6D4C25;
  margin: 2rem auto;
  padding: 1em;
}
body#plat-modifier section form {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
body#plat-modifier section form div {
  width: 85%;
}
body#plat-modifier section form input {
  width: 85%;
}
body#plat-modifier section form textarea {
  width: 85%;
  font-size: 1.25rem;
}
body#plat-modifier section form input[type=text] {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#plat-modifier section form input[type=submit] {
  margin-top: 2rem;
}
body#plat-modifier section form select {
  font-size: 1.25rem;
  height: 2.15rem;
}
body#plat-modifier section form label {
  font-size: 1.25rem;
  display: flex;
}
body#plat-modifier section form label input[type=checkbox] {
  width: 15px;
  margin-left: 0.5rem;
}
body#plat-modifier section form label input[type=file] {
  margin-left: 0.5rem;
}
body#plat-modifier section form input.btn {
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */