/* @import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap"); */
:root {
  font-family: "Quicksand", sans-serif;
}

body {
  background: linear-gradient(90deg, #def6f5, #9fd9d5 40%);
}

img {
  max-width: 100%;
}

.hero1 img {
  width: 100%;
  max-width: 360px;
}
.hero1 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 0;
  margin: 0 auto;
}
.hero1 .container > :nth-child(1) {
  transform: rotate(-5deg) skew(-5deg);
}
.hero1 h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  max-width: 450px;
  color: #c25458;
  text-shadow: 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.1);
}
.hero1 p {
  font-size: 1.25rem;
  color: #f6735f;
  display: inline-block;
  background: #fdf9f0;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0.25rem 0.25rem 0 #c25458;
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

h2 {
  font-size: 5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  font-family: '楷体';
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  /* -webkit-text-stroke: #64c2e7 0.01px; */
  margin: 0 0 1rem;
  letter-spacing: 0.5em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c25458;
  text-shadow: -0.125rem -0.125rem 0 #fff;
  transform: rotate(-5deg) skew(-5deg) translateY(-1rem);
  margin-bottom: 1rem;
}

.testimonials {
  position: relative;
  margin: 0 auto;
  padding: 1rem;
}
.testimonials:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 893/373;
  background: #64c2e7;
  mask-image: url("https://assets.codepen.io/619833/mask_7.svg");
  -webkit-mask-image: url("https://assets.codepen.io/619833/mask_7.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  z-index: -1;
}

.testimonials-wrapper {
  display: flex;
  display: grid;
  justify-content: center;
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  grid-auto-columns: 320px;
  margin-bottom: 2rem;
}
.testimonials-wrapper .testimonial {
  display: grid;
  background: #fff;
  box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 10rem;
  padding: 1rem 1rem 4rem 1rem;
  text-align: center;
}
.testimonials-wrapper img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10rem;
}
.testimonials-wrapper p {
  margin: 0 2rem;
  line-height: 1.5;
}

.menu-item {
  background: #fff;
  box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

.hero2 {
  margin-top: 4rem;
}

.menu {
  display: grid;
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 2rem auto 4rem auto;
}

.menu-item {
  background: #fff;
  border-radius: 5rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  grid-template-areas: "A B" "A C";
  align-items: start;
}
.menu-item h3 {
  margin: 0;
  transform: rotate(-5deg) skew(-5deg) translateY(0.5rem);
}
.menu-item li {
  list-style: inside;
  line-height: 1.25;
}
.menu-item img {
  aspect-ratio: 1/1;
  width: 100%;
  flex-shrin: 0;
  border-radius: 50%;
  grid-area: A;
}

@media (min-width: 768px) {
  .hero1 .container {
    flex-direction: row;
  }

  .testimonials-wrapper {
    grid-template-columns: repeat(3, auto);
  }

  .menu {
    grid-template-columns: repeat(3, 1fr);
  }
}