/*
@include tablet {
  font-size : ...
}  
*/
@keyframes opacity-bg {
  5%, 50%, 80% {
    background: rgba(0, 0, 0, 0.4);
  }
  0%, 100% {
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes opacity-spinner {
  0%, 50%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes z-index-spinner {
  0%, 100% {
    z-index: 1;
  }
}
@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes z-index {
  0%, 50%, 85% {
    position: relative;
    z-index: -1;
  }
}
@keyframes width {
  0% {
    width: 90%;
  }
  100% {
    width: 80%;
  }
}
@keyframes visibility {
  0% {
    visibility: hidden;
    opacity: 0;
    bottom: -10px;
  }
  100% {
    visibility: visible;
    opacity: 1;
    bottom: 0;
  }
}
@keyframes slidein {
  from {
    margin-right: -10%;
  }
  to {
    margin-right: 0%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes show-heart {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide-heart {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
* {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  width: 100%;
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  text-decoration: none;
  list-style: none;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.67em 0;
}

p {
  font-size: 1.2rem;
}

i {
  font-size: 1.2rem;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  list-style: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  width: 100%;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

footer {
  background-color: #383838;
  padding: 2rem;
}
footer .footer-logo {
  color: #fff;
  font-family: "Shrikhand", cursive;
  font-size: 1.8rem;
  padding: 1rem 0;
  margin: 0;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
footer ul li i,
footer ul li p {
  color: #fff;
  margin: 0;
}
footer ul li i {
  margin-right: 0.6rem;
  font-size: 1rem;
}

.footer__light {
  font-weight: 300;
}

@media only screen and (min-width: 768px) {
  footer {
    padding: 2rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  footer {
    padding: 2rem 4rem;
  }
}
header {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1rem;
  box-shadow: 1px 0px 10px #b2b2b2;
  height: 27px;
}
header .header__logo {
  position: absolute;
}
header img {
  width: auto;
}
header a {
  margin: 0 1.2rem;
}
header .header-icon {
  position: absolute;
  margin-right: 92vw;
}

.loading-spinner {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  animation: 3s none opacity-bg, 2s opacity-spinner;
  -moz-animation: 3s none opacity-bg;
  -webkit-animation: 3s none opacity-bg;
  display: block;
  background: rgba(0, 0, 0, 0);
}

.loading-spinner-container {
  margin: auto;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  display: inline-block;
  position: absolute;
  -webkit-animation: 3s none sk-rotate;
  -moz-animation: 3s none sk-rotate;
  animation: 3s none sk-rotate, 3s none opacity-spinner, z-index-spinner 3s;
  opacity: 0;
}

.loading-spinner-dot1,
.loading-spinner-dot2 {
  width: 50%;
  height: 50%;
  display: inline-block;
  position: relative;
  top: 0;
  border-radius: 100%;
  -webkit-animation: 2s ease-in-out infinite sk-bouce;
  animation: 2s ease-in-out infinite sk-bounce;
}

.loading-spinner-dot1 {
  background-color: #99e2d0;
}

.loading-spinner-dot2 {
  background-color: #9356dc;
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.main,
.fonctionnement,
.restaurants {
  animation: z-index 3s;
  -webkit-animation: z-index 3s;
  -moz-animation: z-index 3s;
}

.main {
  margin: 0 0 1.2rem;
  display: inline-block;
  width: 100%;
}
.main__location {
  display: flex;
  background-color: #e6e6e6;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.main__location i {
  font-size: 1.3rem;
  margin-right: 0.6rem;
}
.main__location p {
  font-size: 1.3rem;
  font-weight: 500;
}
.main__text {
  background-color: #f3f3f3;
  padding: 2rem;
  text-align: center;
}
.main__text h1 {
  margin: 0 2rem;
}
.main__text p {
  color: #383838;
  font-weight: 300;
}
.main__text-btn {
  background: linear-gradient(to bottom right, #ff79da, #9356dc);
  border-radius: 1.8rem;
  padding: 1rem 2rem;
  border: none;
  color: #fff;
}
.main__text-btn:hover {
  cursor: pointer;
  opacity: 0.8;
  box-shadow: 1px 1px 10px #b2b2b2;
  transition: all 0.2s ease;
}

.fonctionnement {
  margin: 3rem 1rem;
}
.fonctionnement__lists {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1.2rem;
}
.fonctionnement__lists:hover .fonctionnement__lists-content {
  transition: all 0.5s ease;
  background-color: rgba(147, 86, 220, 0.1);
}
.fonctionnement__lists:hover .fonctionnement__lists-content i {
  color: #9356dc;
  transition: all 0.5s ease;
}
.fonctionnement__lists-number {
  background-color: #9356dc;
  padding: 0.6rem;
  border-radius: 50%;
  color: #fff;
  z-index: 0;
  font-size: 1rem;
  width: 0.9rem;
  height: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fonctionnement__lists-content {
  display: flex;
  width: 100%;
  align-items: center;
  background-color: #f3f3f3;
  box-shadow: 0px 5px 10px #e6e6e6;
  padding: 1rem 2rem;
  border-radius: 1.8rem;
  margin-left: -15px;
}
.fonctionnement__lists-content i {
  margin-right: 1.2rem;
  color: #838383;
}
.fonctionnement__lists-content p {
  font-weight: 500;
}

.restaurants {
  background-color: #f3f3f3;
  padding: 3rem 1rem;
  position: relative;
  z-index: 0;
}
.restaurants__card {
  position: relative;
  background-color: #fff;
  border-radius: 1.8rem;
  display: inline-block;
  margin-bottom: 1.2rem;
  box-shadow: 1px 1px 10px #e6e6e6;
  width: 100%;
}
.restaurants__card img {
  border-radius: 1.8rem 1.8rem 0 0;
  height: 12rem;
  width: 100%;
  object-fit: cover;
}
.restaurants__card .absolute {
  position: absolute;
  right: 5%;
  background-color: #99e2d0;
  color: #1f7c65;
  padding: 0.6rem;
  border-radius: 0.2666666667rem;
}
.restaurants__card:hover {
  box-shadow: 1px 1px 10px #b2b2b2;
  transition: all 0.5s ease;
}

.restaurants__card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1.2rem;
}
.restaurants__card-title p {
  margin: 0.4rem 0 0.6rem;
  font-weight: 300;
}
.restaurants__card-title .icon-heart {
  display: flex;
}
.restaurants__card-title .icon-heart i {
  font-size: 1.3rem;
}
.restaurants__card-title .icon-heart .empty {
  margin-right: -21px;
  z-index: 1;
}
.restaurants__card-title .icon-heart .full {
  opacity: 0;
}
.restaurants__card-title .icon-heart > .empty:hover {
  animation: hide-heart forwards 1s;
}
.restaurants__card-title .icon-heart > .empty:hover + .full {
  animation: show-heart forwards 1s;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to top, #ff79da, #9356dc);
  background: -webkit-linear-gradient(to top, #ff79da, #9356dc);
  background: -moz-linear-gradient(to top, #ff79da, #9356dc);
  -webkit-background-clip: text;
  background-clip: text;
}

.restaurants > .restaurants__wrapper > .restaurants__card > .restaurants__card-title > .restaurants__card-text > .restaurant__card-title--bold {
  font-weight: 700;
  margin: 0.6rem 0 0;
}

@media only screen and (min-width: 768px) {
  .fonctionnement {
    margin: 4rem 2rem;
  }

  .restaurants {
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .fonctionnement {
    margin: 5rem 3rem;
  }
  .fonctionnement__wrapper {
    display: flex;
    justify-content: space-around;
  }
  .fonctionnement__wrapper a {
    margin-right: 1rem;
  }

  .restaurants {
    padding: 5rem 3rem;
  }
  .restaurants__wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 50%));
    grid-gap: 1rem;
  }
}
.main-img {
  position: relative;
  z-index: -1;
  object-fit: cover;
  height: 270px;
  object-position: 0% 100%;
}

#enchantee-img {
  object-position: 0% 45%;
}

.menu {
  margin-top: -50px;
  background-color: #f3f3f3;
  border-radius: 50px 50px 0 0;
  padding: 1.2rem;
}
.menu__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem;
}
.menu__title h1 {
  font-family: "Shrikhand", cursive;
  font-size: 1.8rem;
}
.menu__title i {
  font-size: 1.3rem;
}
.menu__card-title {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 1rem 0;
  border-bottom: 4px solid #99e2d0;
  padding-bottom: 0.4rem;
  width: 65px;
}
.menu__card-list {
  width: 100%;
}

.menu .icon-heart {
  display: flex;
}
.menu .icon-heart i {
  font-size: 1.3rem;
}
.menu .icon-heart .empty {
  margin-right: -21px;
  z-index: 1;
}
.menu .icon-heart .full {
  opacity: 0;
}
.menu .icon-heart > .empty:hover {
  animation: hide-heart forwards 1s;
  cursor: pointer;
}
.menu .icon-heart > .empty:hover + .full {
  animation: show-heart forwards 1s;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to top, #ff79da, #9356dc);
  background: -webkit-linear-gradient(to top, #ff79da, #9356dc);
  background: -moz-linear-gradient(to top, #ff79da, #9356dc);
  -webkit-background-clip: text;
  background-clip: text;
}

.menu__card-list {
  margin-bottom: 3rem;
}
.menu__card-list-text {
  width: 80%;
}
.menu__card-list-text p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu__card-list a {
  background-color: #fff;
  box-shadow: 1px 1px 10px #e6e6e6;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
}
.menu__card-list a .juscon {
  justify-content: space-between;
  display: flex;
  align-items: center;
  width: 100%;
}
.menu__card-list a .price {
  width: 1rem;
}
.menu__card-list a:hover {
  box-shadow: 1px 1px 10px #b2b2b2;
  overflow: hidden;
  transition: all 0.5s ease-in;
}
.menu__card-list a:hover .juscon {
  width: 80%;
  animation: width 0.5s;
}
.menu__card-list a:hover .animation {
  display: inline-block;
  background-color: #99e2d0;
  padding: 1.6rem 1.2rem;
  border-radius: 0 20px 20px 0;
  animation: slidein 0.5s;
}
.menu__card-list a:hover .animation > i {
  color: #fff;
  animation: rotate 0.5s;
}
.menu__card-list a .menu__card-list {
  align-items: last baseline;
  display: flex;
}
.menu__card-list a .price {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
  width: 2.5rem;
  display: flex;
  align-self: flex-end;
}
.menu__card-list a .menu__card-list-text {
  padding: 0.6rem 0 0.6rem 0.6rem;
}
.menu__card-list a .menu__card-list-text p {
  margin: 0.4rem 0 0 0;
}
.menu__card-list a .menu__card-list-text .strong {
  font-weight: 500;
}
.menu__card-list a .menu__card-list-text .light {
  font-weight: 300;
  font-size: 1.1rem;
}
.menu__card-list a p {
  margin: 0.6rem 0;
}

.menu__card-list a .animation {
  display: none;
}
.menu__card-list a .animation i {
  font-size: 1.4rem;
}

.menu form {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 1.2rem 0;
}
.menu form button {
  background: linear-gradient(to bottom right, #ff79da, #9356dc);
  border-radius: 1.8rem;
  padding: 1rem 2rem;
  border: none;
  color: #fff;
}
.menu form button:hover {
  cursor: pointer;
  opacity: 0.8;
  box-shadow: 1px 1px 10px #b2b2b2;
  transition: all 0.2s ease;
}

.menu__card {
  opacity: 1;
  position: relative;
}

.entree {
  animation: visibility 0.8s ease-in 0.5s;
}

.plats {
  animation: visibility 0.8s ease-in 1s;
}

.desserts {
  animation: visibility 0.8s ease-in 1.5s;
}

@media only screen and (min-width: 768px) {
  .menu {
    padding: 1.2rem 2rem;
  }
  .menu__card-list-text {
    width: 90%;
  }
  .menu__card-list a:hover .juscon {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .menu {
    padding: 1.2rem 3rem;
  }
}

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