body {
  background-color: var(--secondary-color-light);
}

header {
  position: absolute;
  width: 100%;
}

.section {
  margin: 5rem 0 5rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

#hero {
  display: grid;
  height: 87vh;
  background-image: url("../img/cheesecake/meo-basque-cheesecake-takeaway-hero-dark.webp");
  background-size: cover;
  background-position: center;
  color: var(--secondary-color-light);
  overflow: hidden;
}

#hero .hero-content {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(475px, 1fr)); */
  grid-template-columns: 1fr;
  /* text-align-last: right; */
  max-height: 87vh;
  z-index: 3;
}

.heroGrid {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  align-items: flex-start;
  align-self: end;
  justify-self: center;
  margin-bottom: 5%;
  padding: 0 10%;
}

#cheesecakkes-flex-container {
  display: flex;
  gap: 2rem;
}
#cheesecakkes-flex-container div {
  height: 350px;
  width: 200px;
  background-color: brown;
}

#how-to-order.section {
  padding: 0 10%;
}
.flex-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap-reverse;
  align-items: center;
}

.flex-container #desc {
  background-color: #ecd0a63d;
  flex-basis: 450px;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5% 4%;
  border-radius: 25px;
  justify-content: center;
  height: -webkit-fill-available;
}

.flex-container #desc .info-box-cta a {
  width: 100%;
}

.flex-container #img {
  flex-basis: 300px;
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.flex-container img {
  border-radius: 25px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

#good-to-know {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  gap: 2.4rem;
}

#good-to-know .good-to-know-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #ecd0a63d;
  border-radius: 25px;
  padding: 5% 4%;
  justify-content: center;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item h3 {
  font-weight: bold;
}

#why-us .heroGrid p,
#how-to-order .flex-container p,
#good-to-know .good-to-know-container p {
  font-size: clamp(1rem, 1.4vw, 2rem);
  line-height: initial;
}
