.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ecd29b;
}

/* Bring the active section to the first position */
.section.is-active {
  order: -1;
}

.section__background-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section__background-media video,
.section__background-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__background-media--with-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .32);
}

.section__title {
  margin-top: 0;
  font-size: var(--heading2-font-size);
}

.section__content {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section__content {
    width: calc(100% - 32px);
  }
}

@media screen and (max-width: 767px) {
  .section__food-image {
    max-width: 260px;
  }
}

.section__menu-items {
  margin-top: 16px;
  list-style-type: none;
}

.section__menu-item {
  font-size: 20px;
  line-height: 1;
}

.section__menu-item span {
  font-size: 120%;
  font-weight: 700;
  color: var(--color-green-90);
}

.section__menu-item + .section__menu-item {
  margin-top: 8px;
}

.section__disclaimer {
  margin-top: 32px;
  color: var(--color-black);
}

.section__disclaimer .text-bold {
  font-weight: 700;
}

.section__disclaimer .text-large {
  font-size: var(--body-font-size-large);
}

.section__disclaimer .text-small {
  font-size: var(--body-font-size-small);
}
