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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style-type: none;
}

@keyframes itemAppear {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
header {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 1.5rem 0;
  position: relative;
}
header img:nth-child(1) {
  position: absolute;
  width: 2rem;
  left: 3rem;
}
header img:nth-child(2) {
  width: 16rem;
}

footer {
  padding: 2.5rem 1.5rem;
  color: #fff;
  background-color: #353535;
}
@media screen and (min-width: 900px) {
  footer {
    padding: 2.5rem 10%;
  }
}
@media screen and (min-width: 1400px) {
  footer {
    padding: 2.5rem 22%;
  }
}
footer h4 {
  font-family: "Shrikhand", cursive;
  font-weight: lighter;
  margin-bottom: 1.5rem;
  font-size: 1.9rem;
}
footer ul li {
  margin-bottom: 0.8rem;
}
footer ul li:nth-child(1) a::before {
  content: "";
  display: inline-block;
  background-image: url("../../images/icones/utensils-solid.svg");
  background-size: 1.5rem 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1.2rem;
  transform: translateY(0px);
}
footer ul li:nth-child(2) a::before {
  content: "";
  display: inline-block;
  background-image: url("../../images/icones/hands-helping-solid.svg");
  background-size: 1.5rem 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1.2rem;
  transform: translateY(2px);
}
footer ul li a {
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.hero-header {
  max-width: 150rem;
  margin: 0 auto;
}
.hero-header img {
  width: 100%;
  height: 22.536rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 500px) {
  .hero-header img {
    height: 30rem;
  }
}
@media screen and (min-width: 1000px) {
  .hero-header img {
    height: 35rem;
  }
}

main {
  font-family: "Roboto", sans-serif;
  background-color: #f6f6f6;
  padding: 2.5rem 1.5rem 7rem 1.5rem;
  position: relative;
  margin-top: -5rem;
  border-radius: 40px 40px 0 0;
  max-width: 70rem;
}
@media screen and (min-width: 700px) {
  main {
    margin-left: auto;
    margin-right: auto;
  }
}
main .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
main .title h1 {
  font-family: "Shrikhand", cursive;
  font-size: 2.8rem;
  font-weight: lighter;
}
main .title .favorite {
  display: flex;
  align-items: center;
}
main .title .favorite input {
  display: none;
}
main .title .favorite input:checked + label {
  content: "";
  display: block;
  background-image: url(../../images/icones/heart-solid.svg);
  background-size: 2.8rem 2.8rem;
  height: 2.8rem;
  width: 2.8rem;
  margin-right: 2.2rem;
}
main .title .favorite input:checked + label::before {
  opacity: 0;
  transition: opacity 0.5s;
}
main .title .favorite label {
  cursor: pointer;
}
main .title .favorite label::before {
  content: "";
  display: block;
  background-image: url(../../images/icones/heart-regular.svg);
  background-size: 2.8rem 2.8rem;
  height: 2.8rem;
  width: 2.8rem;
  margin-right: 2.2rem;
}

form .entrees,
form .plats,
form .desserts {
  margin-bottom: 3.5rem;
}
form .entrees input,
form .plats input,
form .desserts input {
  position: absolute;
  left: -9999px;
}
form .entrees input:checked + label .selection,
form .plats input:checked + label .selection,
form .desserts input:checked + label .selection {
  margin-right: -2rem;
}
form .entrees input:checked + label .logo-check,
form .plats input:checked + label .logo-check,
form .desserts input:checked + label .logo-check {
  transform: rotate(0deg);
}
form .delay-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
form .delay-2 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
form .delay-3 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
form .delay-4 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
form .delay-5 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
form .delay-6 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
form .delay-7 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
form .delay-8 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
form .delay-9 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
form .delay-10 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
form h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: lighter;
  margin-bottom: 1.5rem;
}
form h2::after {
  content: "";
  display: block;
  width: 3.9rem;
  height: 0.3rem;
  background-color: #99e2d0;
  margin-top: 0.3rem;
}
form label {
  display: flex;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #fff;
  border-radius: 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0px 2px 5px 2px #ccc;
  overflow: hidden;
  cursor: pointer;
  -webkit-animation-name: itemAppear;
  animation-name: itemAppear;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transform: translateY(20px);
  opacity: 0;
}
form label div:first-child {
  white-space: nowrap;
  overflow: hidden;
  flex-grow: 1;
}
form label div:first-child h3 {
  margin-bottom: 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
form label div:first-child aside {
  text-overflow: ellipsis;
  overflow: hidden;
}
form label .prix {
  align-self: flex-end;
  font-weight: bold;
  font-size: 1.5rem;
}
form label .selection {
  background-color: #99e2d0;
  margin: -1rem -8.1rem -1rem 2rem;
  display: flex;
  align-items: center;
  transition-duration: 0.5s;
}
form label .selection .logo-check {
  height: 2.1rem;
  width: 2.1rem;
  margin: 0 2rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  transition-duration: 0.5s;
  transform: rotate(180deg);
  transition-duration: 0.5s;
}
form label .selection .logo-check img {
  width: 1.5rem;
}
form input {
  font-size: 1.6rem;
  cursor: pointer;
  display: block;
  margin: 4rem auto 0 auto;
  border: none;
  padding: 1.5rem 4rem;
  border-radius: 23px;
  background: linear-gradient(176deg, #ff79da, #9356dc);
  color: #fff;
  box-shadow: 0px 2px 5px 2px #ccc;
}
form input:hover {
  filter: brightness(105%);
}

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