@charset "UTF-8";

/** GENERAL µ*/

body {
  font-family: roboto;
  margin: 0;
  width: 100%;
  height: 100%;
}
 
ul,
ol {
  list-style-type: none;
  counter-reset: section;
}

.bloc {
  max-width: 1500px;
  margin: auto;
  position: relative;
}

@keyframes opa {
  0% {
    opacity: 0.5;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    position: relative;
  }
}
.loader {
  width: 100%;
  height: 100%;
  background-color: #838383;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  animation: opa 3s ease-in forwards;
}
.loader_spinner {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 50%;
  border: 3px dotted #9356dc;
  animation: load 0.6s backwards infinite;
  position: absolute;
}
.loader_spinner_element {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px dotted #ff79da;
  animation: load 0.6s backwards infinite;
  position: absolute;
}

@keyframes load {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(2);
  }
}

/** HEADER **/

.header {
  padding: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  justify-content: center;
}
.header_logo {
  height: 30px;
  padding: 15px 15px 15px 15px;
  margin: 0;
  align-items: center;
}
.header_indexhtml {
  position: absolute;
  left: 30px;
  height: 30px;
  width: 30px;
  top: 50%;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 20px;
  color: black;
}

.search {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #363636;
}
.search_icon {
  position: relative;
  right: 12px;
  padding-top: 2px;
}
.search_span {
  position: relative;
  padding-top: 8px;
  font-style: normal;
  font-size: 18px;
}

/** INFORMATION **/

.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  padding-bottom: 70px;
  background-color: #f6f6f6;
  padding-left: 60px;
  padding-right: 60px;
}
.info_btnexplorer {
  padding: 10px;
  border-radius: 130px;
  background: linear-gradient(to bottom, #ff79da 10%, #9356dc 100%);
  display: flex;
  position: relative;
  font-size: large;
  color: white;
  width: 220px;
  justify-content: center;
}
.info_btnexplorer:hover {
  transform: scale(1.01);
  cursor: pointer;
  box-shadow: 3px 5px 5px grey;
  transition: 0.1s;
  opacity: 0.9;
}

/** FUNCTION */

.function_term {
  padding: 18px;
  font-size: 24px;
}
.function_main {
  padding: 18px;
  margin: 0px 0 10px 0px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.125);
  border-radius: 20px;
  background-color: #f6f6f6;
  position: relative;
  display: flex;
  font-size: 20px;
  list-style: none;
  font-weight: bold;
  max-width: 100%;
  left: -14px;
  justify-content: center;
}
.function_main::before {
  counter-increment: section;
  content: " " counter(section) "  ";
  height: 25px;
  width: 25px;
  font-size: 18px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9356dc;
  position: absolute;
  left: -12px;
}
.function_main:hover {
  background-color: rgba(241, 232, 250, 0.9);
  color: #9356dc;
  cursor: pointer;
}
.function_text {
  padding-left: 22px;
  color: black;
}
.function_icon {
  padding: 2px 0px 1px 12px;
}

/** 4 RESTAURANTS */

.resto {
  background-color: #f6f6f6;
  padding-bottom: 15px;
}
.resto_line {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 32px;
  row-gap: 32px;
  padding: 20px 0px 0px 20px;
}

.restocards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 32px;
  row-gap: 32px;
}
.restocards:link {
  color: black;
}
.restocards:visited {
  color: black;
}

@keyframes restocard_heart1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.restocard {
  display: flex;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  margin: 10px;
  background-color: white;
  border-radius: 16px;
}
.restocard_img {
  height: 200px;
  width: 100%;
  border: transparent solid 0px;
  border-radius: 16px 16px 0 0;
  box-shadow: none;
  object-fit: cover;
}
.restocard_new {
  padding: 8px;
  border-radius: 2px;
  position: absolute;
  top: 16px;
  right: 12px;
  background-color: #99e2d0;
  color: #00644b;
  font-weight: bold;
}
.restocard_menu {
  padding: 0 0 10px 15px;
}
.restocard_name {
  font-family: Shrikhand;
  font-weight: bold;
}
.restocard_btn {
  position: absolute;
  text-align: right;
  top: 80%;
  right: 2%;
}
.restocard_heart1 {
  color: black;
  cursor: pointer;
}
.restocard_heart1:hover {
  opacity: 1;
  background: linear-gradient(to right, #9356dc, #ff79da);
  animation: restocard_heart1 2s ease-out;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/** RESTO-MENUS **/

.picture {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}

.mainmenu {
  margin-top: -60px;
  border-radius: 32px 32px 0 0;
  background-color: #f6f6f6;
  z-index: 1;
}
.mainmenu_header {
  padding: 16px 32px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainmenu_term {
  font-family: Shrikhand;
  font-weight: bold;
}
.mainmenu_button {
  background-color: transparent;
  border: transparent 0px solid;
}

.menus {
  display: grid;
}

.menu {
  max-width: 100%;
  overflow: hidden;
  padding: 0 16px;
}
.menu_term {
  text-transform: uppercase;
  padding-bottom: 8px;
  font-weight: normal;
  border-bottom: 3px solid #99e2d0;
  width: 11%;
}

@keyframes slow {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.maincard {
  background-color: white;
  padding: 16px;
  display: flex;
  border-radius: 12px;
  margin: 16px 0;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  animation: slow 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  transform: scale(0);
  max-width: 100%;
  max-width: 100%;
}
.maincard_header {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
}
.maincard_term {
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.maincard_base {
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.maincard_price {
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 8px;
}
.maincard_fig {
  margin: -16px -80px -16px 16px;
  background-color: #99e2d0;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.5s;
}
.maincard_wrapicon {
  height: 26px;
  width: 26px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transform: rotate(180deg);
  transition-duration: 0.5s;
}
.maincard:hover .maincard_fig {
  margin-right: -16px;
}
.maincard:hover .maincard_wrapicon {
  transform: rotate(0);
}
.maincard_icon {
  color: #125c49;
}
.a1,
.a2,
.a3 {
  animation-delay: 0.1s;
}

.a4,
.a5,
.a6 {
  animation-delay: 0.6s;
}

.a7,
.a8,
.a9 {
  animation-delay: 0.9s;
}

.mainbtnorder {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.mainbtnorder .btnorder {
  padding: 10px;
  border-radius: 130px;
  font-size: large;
  background: linear-gradient(to bottom, #ff79da 10%, #9356dc 100%);
  position: relative;
  display: flex;
  color: white;
  width: 180px;
  align-items: center;
  justify-content: center;
}
.mainbtnorder .btnorder:hover {
  transform: scale(1.01);
  cursor: pointer;
  box-shadow: 3px 5px 5px grey;
  transition: 0.1s;
  opacity: 0.9;
}

.mainmenu_heart1 {
  color: #2c2c2c;
  cursor: pointer;
}

.mainmenu_heart1:hover {
  opacity: 1;
  background: linear-gradient(to right, #9356dc, #ff79da);
  animation: restocard_heart1 2s ease-out;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

@media (min-width: 992px) {
  ol {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .function_main {
    flex: 1;
    margin: 0 10px;
  }

  .restocards {
    grid-template-columns: repeat(2, 1fr);
  }

  .menus {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
  }
}

/** FOOTER **/

.footer {
  background-color: #2c2c2c;
  padding: 35px 40px 40px 0px;
}
.footer_logo1 {
  filter: invert(100%);
  -webkit-filter: invert(100%);
  color: #fff;
  width: 120px;
  padding-left: 39px;
}
.footer_icon1 {
  padding-right: 12px;
}
.footer_icon2 {
  padding-right: 6px;
}
.footer_link {
  text-decoration: none;
  text-align: start;
  flex-direction: row;
}
.footer_link:hover {
  text-decoration: underline;
}
.footer_link:link {
  color: #fff;
}
.footer_link:visited {
  color: #fff;
}

/*# sourceMappingURL=style.css.map **/
