.header {
  background-image: url(../img/acceuil_header.png);
  background-color: #2A2C32;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

nav {
  height: 100px;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 3rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 1200px) {
  nav {
    display: flex;
  }
}

.vide {
  grid-column-start: 1;
  grid-column-end: 2;
}

.home-link {
  grid-column-start: 2;
  grid-column-end: 3;
}
.home-link img {
  height: 65px;
}

.open-sidebar-btn {
  grid-column-start: 3;
}

.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.links-container a {
  height: 90%;
  font-size: 1.5rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: underline;
  flex-wrap: nowrap;
}
.links-container a:hover {
  color: #4E5F59;
}
@media (min-width: 1200px) {
  .links-container a:hover {
    color: #B5B0A4;
  }
}
.links-container img {
  height: 5rem;
  display: flex;
}
@media (min-width: 1200px) {
  .links-container {
    justify-content: space-around;
  }
}

#sidebar-active {
  display: none;
}

.open-sidebar-btn,
.close-sidebar-btn {
  padding: 0 20px;
  display: none;
}

@media (min-width: 1200px) {
  .home-link img {
    display: none;
  }
}
@media (max-width: 1200px) {
  .links-container {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 70vw;
    background-color: #B5B0A4;
    box-shadow: -5px 0 5px #2A2C32;
  }
  .links-container a {
    box-sizing: border-box;
    height: auto;
    width: 70vw;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .open-sidebar-btn,
  .close-sidebar-btn {
    display: block;
  }
  #sidebar-active:checked ~ .links-container {
    display: flex;
  }
}
#slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  font-size: 3rem;
  font-family: "acier-bat-solid", sans-serif;
}
@media (min-width: 1200px) {
  #slogan {
    font-size: 5rem;
  }
}

.acceuil-menu {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
@media (min-width: 1200px) {
  .acceuil-menu {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.acceuil-menu .a-menu-img {
  height: 50vh;
}
@media (min-width: 1200px) {
  .acceuil-menu .a-menu-img {
    height: 100vh;
  }
}
.acceuil-menu #img1 {
  grid-column-start: 2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 50vw;
}
@media (min-width: 1200px) {
  .acceuil-menu #img1 {
    width: 33vw;
  }
}
.acceuil-menu #img2 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 50vw;
}
@media (min-width: 1200px) {
  .acceuil-menu #img2 {
    display: none;
  }
}
.acceuil-menu .motBeige {
  color: #B5B0A4;
}
.acceuil-menu h2 {
  font-size: 45px;
  font-family: "acier-bat-solid", sans-serif;
  line-height: 160%;
  margin-top: 35%;
  margin-left: 18px;
}
@media (min-width: 1200px) {
  .acceuil-menu h2 {
    display: grid;
    place-content: center;
  }
}
.acceuil-menu h2 p {
  position: absolute;
  padding-left: 3vw;
  font-size: 2.7rem;
}
@media (min-width: 1200px) {
  .acceuil-menu h2 p {
    position: relative;
    padding: 0;
    font-size: 6rem;
    margin: 1rem 0 1rem 104px;
  }
}
.acceuil-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
}
.acceuil-menu a:hover {
  color: #B5B0A4;
}
@media (min-width: 1200px) {
  .acceuil-menu a {
    background-image: url(../img/acceuil_header.png);
    grid-column-start: 3;
    grid-row-start: 1;
    font-size: 80px;
  }
}

.commentaires {
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-color: #B5B0A4;
  text-align: center;
}
@media (min-width: 1200px) {
  .commentaires {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.commentaires #commentaires {
  grid-template-rows: 1fr 1fr 1fr;
  height: 100vh;
}
@media (min-width: 1200px) {
  .commentaires #commentaires {
    grid-template-rows: 1fr;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 5rem 104px;
    gap: 4rem;
  }
}
.commentaires .review {
  align-self: center;
}
.commentaires h3 {
  font-size: 2rem;
  font-family: "acier-bat-solid", sans-serif;
  color: #2A2C32;
  margin: 45px 0 10px 0;
}
.commentaires .avatar {
  height: 60px;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .commentaires .avatar {
    height: 85px;
  }
}
.commentaires .stars {
  height: 2vh;
}
.commentaires p {
  margin-bottom: 40px;
  color: #2A2C32;
  font-size: medium;
}
@media (min-width: 1200px) {
  .commentaires p {
    font-size: 1.3rem;
    font-family: "nimbus-sans", sans-serif;
  }
}

.a-propos {
  height: 50vh;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1200px) {
  .a-propos {
    height: 100vh;
  }
}
.a-propos .texte {
  margin-left: 18px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #FFF8EF;
}
@media (min-width: 1200px) {
  .a-propos .texte {
    margin-left: 104px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.a-propos h3 {
  font-size: 30px;
  font-family: "acier-bat-solid", sans-serif;
  margin: 0% 0 15px;
  color: #FFFFFF;
}
@media (min-width: 1200px) {
  .a-propos h3 {
    font-size: 6rem;
  }
}
.a-propos a {
  background-color: #B5B0A4;
  font-size: 14px;
  padding: 6px;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .a-propos a {
    font-size: 1.8rem;
    padding: 0.5rem;
  }
}
.a-propos a:hover {
  background-color: #4E5F59;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.a-propos img {
  width: 50vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  grid-column-start: 2;
  grid-row-start: 1;
}
@media (min-width: 1200px) {
  .a-propos img {
    height: 100vh;
  }
}

.infolettre {
  display: flex;
  background-color: #2A2C32;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  height: 100vh;
  background-image: url(../img/infolettre.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 30%;
}
@media (min-width: 1200px) {
  .infolettre #glass {
    margin: 0 auto;
    background: rgba(181, 176, 164, 0.25);
    box-shadow: 0 8px 32px 0 rgba(36, 34, 31, 0.37);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 75vw;
    text-align: center;
    font-size: 2rem;
    padding: 0.5rem;
  }
}
.infolettre h2 {
  margin: 0;
  padding: 70px 0 30px;
  font-family: "acier-bat-solid", sans-serif;
  font-size: 2.5rem;
  color: #B5B0A4;
}
@media (min-width: 1200px) {
  .infolettre h2 {
    font-size: 3rem;
  }
}
.infolettre label {
  font-family: "acier-bat-solid", sans-serif;
  font-size: 23px;
}
@media (min-width: 1200px) {
  .infolettre label {
    font-size: 1.5rem;
  }
}
.infolettre input {
  padding: 2px;
  font-size: 1rem;
  margin-bottom: 20px;
}
.infolettre p {
  padding: 0 0 90px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .infolettre p {
    margin: 0;
    padding: 0 0 20px;
    font-size: 1.5rem;
  }
}
.infolettre #submit {
  margin-top: 1rem;
  background-color: #B5B0A4;
  border: none;
  padding: 6px;
  color: #FFFFFF;
  font-family: "acier-bat-solid", sans-serif;
  font-size: 14px;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .infolettre #submit {
    font-size: 1.4rem;
    padding: 0.5rem;
    margin-bottom: 70px;
  }
}
.infolettre #submit:hover {
  background-color: #4E5F59;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

body {
  background-color: #2A2C32;
  color: #FFFFFF;
  font-family: "nimbus-sans", sans-serif;
  margin: 0 auto;
}
body a {
  color: #FFFFFF;
  font-family: "acier-bat-solid", sans-serif;
}
body h1 h2 h3 {
  font-family: "acier-bat-solid", sans-serif;
}

iframe {
  height: 20vh;
  width: 100vw;
  padding-top: 50px;
}
@media (min-width: 1200px) {
  iframe {
    height: 50vh;
  }
}

.admin {
  font-family: "acier-bat-solid", sans-serif;
  color: #B5B0A4;
  height: -moz-fit-content;
  height: fit-content;
  font-size: large;
}

.adminSubmit {
  background-color: #B5B0A4;
  font-size: 14px;
  padding: 6px;
  border-radius: 5px;
  color: #FFFFFF;
  margin: 10px;
  font-family: "acier-bat-solid", sans-serif;
}
.adminSubmit:hover {
  background-color: #4E5F59;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

label {
  color: #B5B0A4;
}

#pied {
  display: grid;
  height: 80vh;
  justify-items: center;
  text-align: center;
}
#pied a {
  font-family: "nimbus-sans", sans-serif;
}
#pied h3 {
  font-family: "acier-bat-solid", sans-serif;
}
#pied img {
  padding-top: 2%;
}
#pied input {
  margin: 2px;
}
#pied p {
  margin: 0;
}
@media (min-width: 1200px) {
  #pied {
    display: none;
  }
}
#pied #icones {
  display: flex;
  justify-content: space-around;
}
#pied svg {
  margin: 0 1rem;
}

#footXL {
  display: none;
}
@media (min-width: 1200px) {
  #footXL {
    height: 30vh;
    display: grid;
    padding: 90px 100px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #footXL a {
    font-family: "nimbus-sans", sans-serif;
  }
  #footXL h3 {
    font-family: "acier-bat-solid", sans-serif;
  }
  #footXL img {
    padding-top: 2%;
  }
  #footXL input {
    margin: 2px;
  }
  #footXL p {
    margin: 0;
  }
  #footXL img {
    width: 150px;
    padding: 0;
  }
  #footXL h3 {
    margin-top: 0;
  }
  #footXL p {
    margin: 10px 0;
    color: #B5B0A4;
  }
  #footXL .admin {
    margin-top: 0;
    color: #FFFFFF;
  }
  #footXL a {
    line-height: 30px;
    color: #B5B0A4;
  }
  #footXL .icones {
    width: 120px;
    display: flex;
    justify-content: space-around;
    margin: 10px;
  }
  #footXL .adminSubmit {
    margin-left: 0;
    margin-bottom: 90px;
  }
  #footXL .adminSubmit:hover {
    background-color: #4E5F59;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  }
}

#page-menu {
  text-align: center;
}
#page-menu h2 {
  font-size: 45px;
  font-family: "acier-bat-solid", sans-serif;
  color: #2A2C32;
  padding: 30px 0;
}
@media (min-width: 1200px) {
  #page-menu h2 {
    font-size: 60px;
  }
}
#page-menu h3 {
  padding: 0 0 35px 0;
  font-size: 30px;
  font-family: "acier-bat-solid", sans-serif;
  color: #4E5F59;
}
@media (min-width: 1200px) {
  #page-menu h3 {
    font-size: 40px;
  }
}
#page-menu h4 {
  font-family: "acier-bat-solid", sans-serif;
}

.galerie-manger,
.galerie-boire {
  display: none;
}
@media (min-width: 1200px) {
  .galerie-manger,
  .galerie-boire {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 3rem 60px;
  }
  .galerie-manger img,
  .galerie-boire img {
    width: 100%;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#menu-drinks {
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  #menu-drinks {
    margin-top: 0;
  }
}

#menu-drinks,
#menu-food {
  background-color: #B5B0A4;
  padding: 0 0 3rem 0;
  color: #2A2C32;
}
@media (min-width: 1200px) {
  #menu-drinks,
  #menu-food {
    margin: 1rem 60px;
  }
  #menu-drinks .grid,
  #menu-food .grid {
    margin: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

body {
  width: 100vw;
}

#page-a-propos {
  width: 100%;
  word-wrap: normal;
}
@media (min-width: 1200px) {
  #page-a-propos {
    margin: 3rem 104px;
  }
}
#page-a-propos h4 {
  font-size: 1.5rem;
  font-family: "acier-bat-solid", sans-serif;
  padding: 30px 30px;
  color: #2A2C32;
}
@media (min-width: 1200px) {
  #page-a-propos h4 {
    color: #FFFFFF;
  }
}
#page-a-propos p {
  font-size: 17px;
  color: #2A2C32;
  font-family: "nimbus-sans", sans-serif;
  padding: 0 30px;
}
@media (min-width: 1200px) {
  #page-a-propos p {
    color: #B5B0A4;
    padding-top: 3rem;
  }
}
#page-a-propos img {
  padding: 30px 30px;
  width: 100%;
}
@media (min-width: 1200px) {
  #page-a-propos img {
    height: 50vh;
    padding: 0;
    width: 35vw;
  }
}
#page-a-propos #famille {
  background-color: #B5B0A4;
  max-width: 100vw;
}
@media (min-width: 1200px) {
  #page-a-propos #famille {
    margin: 0 0 4rem 0;
  }
}
#page-a-propos #famille img {
  background-position-x: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) {
  #page-a-propos #famille img {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  #page-a-propos #famille {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #2A2C32;
  }
  #page-a-propos #famille h4 {
    grid-column-start: 1;
    grid-row-start: 1;
    font-size: 2rem;
  }
  #page-a-propos #famille p {
    grid-column-start: 1;
    grid-row-start: 1;
    padding-right: 3rem;
    align-self: center;
    width: 40vw;
    font-size: 1.5rem;
  }
  #page-a-propos #famille img {
    grid-column-start: 2;
    grid-row-start: 1;
  }
}
#page-a-propos #cuisine {
  background-color: #2A2C32;
}
@media (min-width: 1200px) {
  #page-a-propos #cuisine {
    margin: 0 0 4rem 0;
  }
}
#page-a-propos #cuisine h4 {
  color: #FFFFFF;
}
#page-a-propos #cuisine p {
  color: #B5B0A4;
}
#page-a-propos #cuisine img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) {
  #page-a-propos #cuisine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #2A2C32;
  }
  #page-a-propos #cuisine h4 {
    grid-column-start: 2;
    grid-row-start: 1;
    font-size: 2rem;
  }
  #page-a-propos #cuisine p {
    grid-column-start: 2;
    grid-row-start: 1;
    padding-right: 3rem;
    align-self: center;
    width: 40vw;
    font-size: 1.5rem;
  }
  #page-a-propos #cuisine img {
    grid-column-start: 1;
    -o-object-fit: cover;
       object-fit: cover;
    grid-row-start: 1;
  }
}
#page-a-propos #heritage {
  background-color: #B5B0A4;
}
@media (min-width: 1200px) {
  #page-a-propos #heritage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #2A2C32;
  }
  #page-a-propos #heritage h4 {
    grid-column-start: 1;
    grid-row-start: 1;
    font-size: 2rem;
  }
  #page-a-propos #heritage p {
    grid-column-start: 1;
    grid-row-start: 1;
    padding-right: 3rem;
    align-self: center;
    width: 40vw;
    font-size: 1.5rem;
  }
  #page-a-propos #heritage img {
    grid-column-start: 2;
    width: -moz-fit-content;
    width: fit-content;
    grid-row-start: 1;
  }
}

#top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
@media (min-width: 1200px) {
  #top-bar {
    grid-template-columns: 1fr 1fr;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
  }
}
#top-bar h1 {
  margin-left: 2rem;
  font-family: "acier-bat-solid", sans-serif;
  padding-right: 1rem;
}
@media (min-width: 1200px) {
  #top-bar h1 {
    font-size: 2rem;
    padding-right: 0;
  }
}
#top-bar a {
  padding: 0.5rem;
  margin-right: 2rem;
  border-radius: 10px;
  color: #FFFFFF;
}
#top-bar a:hover {
  background-color: red;
}

#gestion-utilisateurs {
  display: grid;
  color: #2A2C32;
  margin: 2rem;
  gap: 2rem;
}
@media (min-width: 1200px) {
  #gestion-utilisateurs {
    grid-template-columns: 1fr 1fr;
  }
}
#gestion-utilisateurs #liste-utilisateurs {
  padding: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0 80px 32px 0 rgba(36, 34, 31, 0.37);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
}
#gestion-utilisateurs #liste-utilisateurs p,
#gestion-utilisateurs #liste-utilisateurs h4 {
  margin: 0;
}
#gestion-utilisateurs #ajout-utilisateur {
  padding: 1rem;
  background-color: #B5B0A4;
  box-shadow: 0 80px 32px 0 rgba(36, 34, 31, 0.37);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
}
#gestion-utilisateurs #ajout-utilisateur h2 {
  text-decoration: underline;
  font-size: x-large;
}
#gestion-utilisateurs #ajout-utilisateur label {
  color: #2A2C32;
  font-family: "acier-bat-solid", sans-serif;
}

.ligne1 {
  display: flex;
}
.ligne1 a {
  margin-left: 1rem;
}

#gestion-menu {
  display: grid;
  margin: 2rem;
  gap: 2rem;
  color: #2A2C32;
}
@media (min-width: 1200px) {
  #gestion-menu {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
#gestion-menu #gestion-entrees, #gestion-menu #gestion-repas, #gestion-menu #gestion-desserts, #gestion-menu #ajout-menu {
  padding: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0 80px 32px 0 rgba(36, 34, 31, 0.37);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
}
#gestion-menu #gestion-entrees p,
#gestion-menu #gestion-entrees h4, #gestion-menu #gestion-repas p,
#gestion-menu #gestion-repas h4, #gestion-menu #gestion-desserts p,
#gestion-menu #gestion-desserts h4, #gestion-menu #ajout-menu p,
#gestion-menu #ajout-menu h4 {
  margin: 0;
}
#gestion-menu #gestion-entrees h2, #gestion-menu #gestion-repas h2, #gestion-menu #gestion-desserts h2, #gestion-menu #ajout-menu h2 {
  font-family: "acier-bat-solid", sans-serif;
}
#gestion-menu #gestion-entrees .ligne1, #gestion-menu #gestion-repas .ligne1, #gestion-menu #gestion-desserts .ligne1, #gestion-menu #ajout-menu .ligne1 {
  margin-top: 1rem;
}
#gestion-menu #gestion-entrees h2, #gestion-menu #gestion-repas h2, #gestion-menu #gestion-desserts h2, #gestion-menu #ajout-menu h2 {
  font-family: "acier-bat-solid", sans-serif;
}
#gestion-menu #ajout-menu {
  background-color: #B5B0A4;
}
#gestion-menu #ajout-menu h2 {
  font-family: "nimbus-sans", sans-serif;
  font-size: x-large;
  text-decoration: underline;
}
#gestion-menu #ajout-menu label {
  color: #2A2C32;
  font-family: "acier-bat-solid", sans-serif;
}
#gestion-menu #ajout-menu form {
  padding-bottom: 2rem;
}

#pageMod {
  background-color: #2A2C32;
}
@media (min-width: 1200px) {
  #pageMod {
    background-image: url(../img/infolettre.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

#formMod {
  margin: 0 auto;
  margin-top: 20%;
  background: rgba(255, 234, 185, 0.342);
  box-shadow: 0 8px 32px 0 rgba(36, 34, 31, 0.37);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 75vw;
  text-align: center;
  padding: 0.5rem;
}
@media (min-width: 1200px) {
  #formMod {
    background: rgba(255, 240, 204, 0.25);
    margin-top: 15%;
  }
}
#formMod h2 {
  font-family: "acier-bat-solid", sans-serif;
  color: #2A2C32;
}
#formMod label {
  font-family: "acier-bat-solid", sans-serif;
  color: #FFFFFF;
}
#formMod p {
  margin-bottom: 0;
}

.submit {
  background-color: #B5B0A4;
  color: #2A2C32;
  font-family: "acier-bat-solid", sans-serif;
  padding: 0.1rem 0.5rem;
  border-radius: 5px;
}
.submit:hover {
  background-color: #4E5F59;
  color: #FFFFFF;
}/*# sourceMappingURL=index.css.map */