/* Fonts */


/* ------------VUE--PC------------- */
/* PAGE MENU  */

body {
  margin: 0px;
  padding: 0;
  background-color: rgb(255, 255, 255);
}

.containerPrincipal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

/* ------------Pages réinitialisation MDP + page confirmation margin top/bottom --------------- */
.container-reini {
  margin-top: 120px;
  margin-bottom: 190px;
}


/* ------------VUE--PC------------- */
@media(min-width: 1024px) {

  /* Image accueil + titre h1 */
  /* -------------------------- */
  .imageAccueil-container {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 80%;
    margin: 25px;
  }

  .rounded-image {
    border-radius: 7px;
    border: 1px solid black;
    width: 80%;
    height: auto;
  }

  .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    font-family: 'David Libre', sans-serif;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 50px;
  }

  /* Notre histoire + titre h2 */
  /* ------------- */
  .histoire-title {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #040F48;
    font-family: 'David Libre', sans-serif;
    margin: 45px 25px 45px 25px
  }

  .info-box {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 55%;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #C78522;
    border-radius: 12px;
    border: 1px solid black;
  }

  .info-box p {
    color: #FFF;
    font-family: 'David Libre', sans-serif;
    font-size: 24px;
    margin: 35px 45px;
    text-align: center;
  }

  /* Titre h3 */
  /* ---------------------- */
  .title-h3 {
    font-family: 'David Libre', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #040F48;
    text-align: center;
    margin: 40px 25px 30px 25px;
    margin-top: 45px;
    margin-bottom: 45px;
  }

  /* Les plats préférés */
  /* --------------------- */
  .imageFlat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 80%;
  }

  .imageFlat-container {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px;
  }

  .imageFlat-container img {
    border-radius: 7px;
    border: 2px solid black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    font-family: 'David Libre', sans-serif;
    font-size: 30px;
    background-color: rgba(255, 255, 255, 255);
    position: absolute;
    padding: 5px 0 5px 0;
    margin: 0px 20px 5px 20px;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #040F48;
    opacity: 0;
    text-align: center;
    transition: opacity 0.4s ease;
  }

  .imageFlat-container:hover .overlay {
    opacity: 1;
  }

  /* Bouton */
  /* ---------------------- */
  .btn-reserve {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    background-color: #493414;
    padding: 10px 10px 15px 10px;
    border-radius: 7px;
    display: block;
    margin: 50px auto;
    margin-top: 70px;
    margin-bottom: 30px;
    width: 250px;
    text-align: center;
    text-decoration: none;
    transition: all 0.1s ease;
    border: 4px solid #493414;
  }

  .btn-reserve:hover {
    color: #493414;
    font-weight: 600;
    font-size: 18px;
    background-color: white;
    border: 4px solid #493414;
  }

  /* Les horaires */
  /* ---------------------- */
    .titre-horaire {
      font-family: 'David Libre', sans-serif;
      font-size: 42px;
      font-weight: 500;
      color: #040F48;
      text-align: center;
      margin-top: 30px;
      margin-bottom: 55px;
    }
  
    .horaire-container {
      border: 1px solid black;
      border-radius: 10px;
      padding: 15px 10px 5px 10px;
      margin-top: 40px;
      margin: 0 auto;
      width: 650px;
      font-family: 'David Libre', sans-serif;
      font-size: 22px;
      text-align: center;
    }
  
    .hour-footer {
      color: #C78522;
      font-weight: 600;
    }
  
    .horaire-container p::before {
      content: "";
      display: inline-block;
      margin-right: 10px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgb(124, 116, 116);
    }


}

/* ------------VUE--TABLETTE------------- */
@media(max-width: 1024px) {

  /* Image accueil + titre h1 */
  /* -------------------------- */
  .imageAccueil-container {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 95%;
    margin: 25px;
  }

  .rounded-image {
    border-radius: 7px;
    border: 1px solid black;
    width: 95%;
    height: auto;
  }

  .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    font-family: 'David Libre', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  /* Notre histoire + titre h2 */
  /* ------------- */
  .histoire-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #040F48;
    font-family: 'David Libre', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .info-box {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 85%;
    margin-top: 20px;
    background-color: #C78522;
    border-radius: 12px;
    border: 1px solid black;
  }

  .info-box p {
    color: #FFF;
    font-family: 'David Libre', sans-serif;
    font-size: 18px;
    margin: 18px;
    text-align: center;
  }

  /* Titre h3 */
  /* ---------------------- */
  .title-h3 {
    font-family: 'David Libre', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #040F48;
    text-align: center;
    margin: 40px 25px 30px 25px;
  }

  /* Les plats préférés */
  /* --------------------- */
  .imageFlat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    width: 97%;
  }

  .imageFlat-container {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px;
  }

  .imageFlat-container img {
    border-radius: 7px;
    border: 2px solid black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    font-family: 'David Libre', sans-serif;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 255);
    position: absolute;
    padding: 5px 0 5px 0;
    margin: 0px 20px 5px 20px;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #040F48;
    opacity: 0;
    text-align: center;
    transition: opacity 0.4s ease;
  }

  .imageFlat-container:hover .overlay {
    opacity: 1;
  }

  /* Bouton */
  /* ---------------------- */
  .btn-reserve {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: white;
    background-color: #493414;
    padding: 10px 25px;
    border-radius: 7px;
    display: block;
    margin: 50px auto;
    margin-top: 50px;
    margin-bottom: 40px;
    width: 240px;
    text-align: center;
    text-decoration: none;
    transition: all 0.1s ease;
    border: 2px solid #493414;
  }

  .btn-reserve:hover {
    color: #493414;
    font-weight: 600;
    font-size: 17px;
    background-color: white;
    border: 2px solid #493414;
  }

  /* Les horaires */
  /* ---------------------- */
    .titre-horaire {
      font-family: 'David Libre', sans-serif;
      font-size: 28px;
      font-weight: 500;
      color: #040F48;
      text-align: center;
      margin-bottom: 30px;
    }
  
    .horaire-container {
      border: 1px solid black;
      border-radius: 10px;
      padding: 15px 10px 10px 10px;
      margin: 0 auto;

      width: 550px;
      font-family: 'David Libre', sans-serif;
      font-size: 18px;
      text-align: center;
    }
  
    .hour-footer {
      color: #C78522;
      font-weight: 600;
    }
  
    .horaire-container p::before {
      content: "";
      display: inline-block;
      margin-right: 10px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: rgb(49, 46, 46);
    }
}

/* ------------VUE--SMARTPHONE------------- */
@media(max-width: 768px) {

  /* Image accueil + titre h1 */
  /* -------------------------- */
  .imageAccueil-container {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 95%;
    margin: 25px;
  }

  .rounded-image {
    border-radius: 7px;
    border: 1px solid black;
    width: 95%;
    height: auto;
  }

  .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    font-family: 'David Libre', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  /* Notre histoire + titre h2 */
  /* ------------- */
  .histoire-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #040F48;
    font-family: 'David Libre', sans-serif;
    margin-top: 20px;
    margin: 20px 25px 10px 25px;
    margin-bottom: 5px;
  }

  .info-box {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 85%;
    margin-top: 20px;
    background-color: #C78522;
    border-radius: 12px;
    border: 1px solid black;
  }

  .info-box p {
    color: #FFF;
    font-family: 'David Libre', sans-serif;
    font-size: 16px;
    margin: 15px;
    text-align: center;
  }

  /* Titre h3 */
  /* ---------------------- */
  .title-h3 {
    font-family: 'David Libre', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #040F48;
    text-align: center;
    margin: 40px 25px 30px 25px;
  }

  /* Les plats préférés */
  /* --------------------- */
  .imageFlat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    width: 97%;
  }

  .imageFlat-container {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px;
  }

  .imageFlat-container img {
    border-radius: 7px;
    border: 2px solid black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    font-family: 'David Libre', sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 255);
    position: absolute;
    padding: 5px 0 5px 0;
    margin: 0px 20px 5px 20px;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #040F48;
    opacity: 0;
    text-align: center;
    transition: opacity 0.4s ease;
  }

  .imageFlat-container:hover .overlay {
    opacity: 1;
  }

  /* Bouton */
  /* ---------------------- */
  .btn-reserve {
    font-family: 'Saira', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
    background-color: #493414;
    padding: 10px 15px;
    border-radius: 7px;
    display: block;
    margin: 50px auto;
    margin-bottom: 30px;
    width: 215px;
    text-align: center;
    text-decoration: none;
    transition: all 0.1s ease;
    border: 2px solid #493414;
  }

  .btn-reserve:hover {
    color: #493414;
    font-weight: 500;
    font-size: 16px;
    background-color: white;
    border: 2px solid #493414;
  }

  /* Les horaires */
  /* ---------------------- */
  .titre-horaire {
    font-family: 'David Libre', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #040F48;
    text-align: center;
    margin-bottom: 30px;
  }

  .horaire-container {
    border: 1px solid black;
    border-radius: 10px;
    padding: 15px 5px 0px 5px;; 
    width: 90%;
    max-width: 480px;
    font-family: 'David Libre', sans-serif;
    font-size: 14px;
    text-align: center;  
  } 

  .hour-footer {
    color: #C78522;
    font-weight: 600;
  }

  .horaire-container p::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(49, 46, 46);
  }




  
}