.menu-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  background-color: var(--base-500);
}

.menu-hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menu-hero h1 {
  font-size: clamp(3rem, 8vw, 13rem);
  width: 75%;
}

.menu-hero .section-footer p {
  color: var(--base-300);
}

.menu-list {
  position: relative;
  width: 100%;
  padding: 8rem 0;
  background-color: var(--base-500);
}

.menu-list .container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.menu-category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  text-align: center;
}

.menu-category-header p {
  color: var(--base-300);
  font-weight: 400;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 85%;
  margin: 0 auto;
}

.menu-grid-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: calc((100% - 2rem) / 3);
  min-height: 250px;
  padding: 2rem;
  border-radius: 0.35rem;
  background-color: var(--base-500);
  will-change: transform, opacity;
}

.menu-grid-card.alt {
  background-color: var(--base-400);
}

.menu-grid-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-grid-card-top h3 {
  font-size: clamp(1.25rem, 2vw, 4rem);
  flex: 1;
  min-width: 0;
  color: var(--base-100);
}

.menu-grid-card-top .mono {
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  background-color: var(--base-300);
  white-space: nowrap;
  color: var(--base-200);
  font-weight: 500;
}

.menu-grid-card p {
  color: var(--base-200);
}

.menu-grid-card-price {
  margin-top: auto;
  color: var(--base-100) !important;
  font-weight: 500;
}

@media (max-width: 999px) {
  .menu-hero h1 {
    width: 100%;
  }

  .menu-grid {
    width: 100%;
  }

  .menu-grid-card {
    width: 100%;
    min-height: auto;
  }
}

/* The category was an <h3> under a page <h2>; it is an <h2> under the <h1>. */
.menu-category-header h2 {
  font-size: clamp(2rem, 5vw, 8rem);
}
