body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: white;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.2s;
}

.fade-delay-2 {
  animation-delay: 0.4s;
}

.fade-delay-3 {
  animation-delay: 0.6s;
}

.fade-delay-4 {
  animation-delay: 0.8s;
}

.fade-delay-5 {
  animation-delay: 1s;
}

.fade-delay-6 {
  animation-delay: 1.2s;
}

.fade-delay-7 {
  animation-delay: 1.4s;
}

.fade-delay-8 {
  animation-delay: 1.6s;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(-5deg, #9356DC, #FF79DA);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn-primary:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover::after {
  opacity: 1;
}

.hero {
  text-align: center;
  padding: 2rem;
  background: #F6F6F6;
}
.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.hero p {
  color: #555;
}

.how {
  background: white;
  padding: 2rem;
}
.how h3 {
  margin-bottom: 1rem;
}
.how .steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.how .steps li {
  background: #F6F6F6;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  gap: 1rem;
  font-weight: 500;
  transition: transform 0.15s ease;
}
.how .steps li i {
  font-size: 1.1rem;
  color: #7E7E7E;
  transition: color 0.15s ease;
}
.how .steps li:hover {
  transform: scale(1.005);
  cursor: pointer;
}
.how .steps li:hover i {
  color: #9356DC;
}
.how .steps li p {
  margin: 0;
  flex: 1;
}
.how .steps li .step-number {
  position: absolute;
  left: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #9356DC;
  color: white;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.restaurants {
  padding: 2rem;
  background: #F6F6F6;
}
.restaurants h3 {
  margin-bottom: 1rem;
}
.restaurants .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.restaurants .card {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.restaurants .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.restaurants .card .card-info {
  padding: 1rem;
}
.restaurants .card .card-info h4 {
  margin-bottom: 0.5rem;
}
.restaurants .card .heart {
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.restaurants .card .heart i {
  position: absolute;
  inset: 0;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}
.restaurants .card .heart .empty {
  color: rgb(16, 16, 16);
}
.restaurants .card .heart .full {
  background: linear-gradient(to bottom, rgb(147, 86, 220), rgb(255, 121, 218));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
}
.restaurants .card .heart:hover .full {
  opacity: 1;
}
.restaurants .card .heart:hover .empty {
  opacity: 0;
}
.restaurants .card.new::before {
  content: "Nouveau";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #99E2D0;
  color: #1B6150;
  padding: 0.2rem 0.5rem;
  border-radius: 0.2rem;
  font-size: 0.8rem;
}

.back-btn {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  font-size: 1.5rem;
  color: #353535;
  text-decoration: none;
  z-index: 10;
  transition: color 0.2s;
}
.back-btn:hover {
  color: #9356DC;
  cursor: pointer;
}

.menu-page {
  background: white;
}
.menu-page .menu-banner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.menu-page .menu-content {
  background: #F6F6F6;
  border-radius: 2rem 2rem 0 0;
  margin-top: -2rem;
  padding: 2rem 1rem;
}
.menu-page .menu-content .menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Shrikhand", cursive;
  font-size: 1.5rem;
}
.menu-page .menu-content .menu-title .heart {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.menu-page .menu-content .menu-title .heart i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  background: linear-gradient(to bottom, rgb(147, 86, 220), rgb(255, 121, 218));
  -webkit-background-clip: text;
  background-clip: text;
  transition: all 0.3s ease;
  color: rgb(16, 16, 16);
}
.menu-page .menu-content .menu-title .heart .full {
  opacity: 0;
}
.menu-page .menu-content .menu-title .heart:hover .full {
  color: transparent;
  opacity: 1;
}
.menu-page .menu-content .menu-title .heart:hover .empty {
  opacity: 0;
}
.menu-page .menu-content .menu-section {
  margin: 2rem 0;
}
.menu-page .menu-content .menu-section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  color: gray;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #99E2D0;
  display: inline-block;
  padding-bottom: 0.2rem;
}
.menu-page .menu-content .menu-section .menu-item {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  clip-path: inset(0 0 0 0 round 1rem);
}
.menu-page .menu-content .menu-section .menu-item:hover {
  transform: scale(1);
}
.menu-page .menu-content .menu-section .menu-item .price {
  font-weight: bold;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.menu-page .menu-content .menu-section .menu-item .check-icon {
  position: absolute;
  top: 0;
  right: -4rem;
  width: 4rem;
  height: 100%;
  background-color: #99e2d0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 1.3rem;
  border-radius: 0 1rem 1rem 0;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 1;
}
.menu-page .menu-content .menu-section .menu-item .check-icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.menu-page .menu-content .menu-section .menu-item:hover .check-icon {
  right: 0;
}
.menu-page .menu-content .menu-section .menu-item:hover .price {
  transform: translateX(-4rem);
}
.menu-page .menu-content .menu-section .menu-item .item-info {
  flex: 1;
}
.menu-page .menu-content .menu-section .menu-item .item-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.menu-page .menu-content .menu-section .menu-item .item-info p {
  font-size: 0.9rem;
  color: #666;
}
.menu-page .menu-content .menu-section .menu-item .price {
  font-weight: bold;
  margin-left: 1rem;
  margin-top: 1.5em;
}
.menu-page .menu-content .menu-order {
  text-align: center;
  margin-top: 2rem;
}
.menu-page .menu-content .menu-order .btn-primary {
  font-size: 1rem;
}

.header {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header__logo {
  height: 30px;
  object-fit: contain;
}

.location-bar {
  width: 100%;
  background-color: #eee;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #353535;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.1);
}

footer {
  background: #353535;
  color: white;
  padding: 1rem;
}
footer .logo {
  font-family: "Shrikhand", cursive;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin: 0.5rem 0;
}

@media screen and (min-width: 1440px) {
  .hero {
    padding: 4rem 0rem;
    text-align: center;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  .hero .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .how {
    padding: 3rem 8rem;
  }
  .how h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .how .steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .how .steps li {
    display: flex;
    flex: 1;
    max-width: 300px;
    position: relative;
    justify-content: left;
    gap: 2rem;
  }
  .how .steps li .step-number {
    position: absolute;
  }
  .how .steps li i {
    position: relative;
    left: 0.5rem;
    font-size: 1.3rem;
  }
  .how .steps li p {
    position: relative;
    font-size: 1rem;
  }
  .restaurants {
    padding: 3rem 8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .restaurants h3 {
    grid-column: 1/-1;
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 2rem;
  }
  .restaurants .card {
    margin: 0;
    height: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
  }
  .restaurants .card img {
    height: 250px;
  }
  .restaurants .card .card-info h4 {
    font-size: 1.1rem;
  }
  .restaurants .card .card-info p {
    font-size: 0.95rem;
  }
  footer {
    padding: 2rem 8rem;
    background: #353535;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  footer .logo {
    font-family: "Shrikhand", cursive;
    font-size: 1.6rem;
    text-align: left;
    flex-shrink: 0;
  }
  footer ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
  }
  footer ul li {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  footer ul li i {
    font-size: 1rem;
  }
  footer ul li:hover {
    color: #FF79DA;
    cursor: pointer;
    transition: color 0.2s ease;
  }
}

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