.menu-hero {
  position: relative;
  background-image: url("/static/assets/img/menu-hero.png");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.menu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 6, 8, 0.6);
  z-index: 1;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
}

.menu-hero-title {
  font-size: 64px;
  text-transform: uppercase;
  font-family: var(--font-condensed);
  margin: 0;
}

.menu-hero-subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 8px;
  font-family: var(--font-primary);
  color: var(--color-gray);
}

.menu-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0px 20px 0px;
}

.menu-header .tagline {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 20px;
  font-family: var(--font-heading);
}

.menu-header h1 {
  font-family: var(--font-condensed);
  font-size: 54px;
  font-weight: 300;
  margin: 0;
}

.menu-header p {
  font-family: var(--font-primary);
  color: #E8E9E9;
  font-size: 21px;
  font-weight: 300;
  max-width: 700px;
  text-align: center;
}

.menu {
    margin: 0 80px;
}

/* RESPONSIVE (≤1200px) */
@media screen and (max-width: 1200px) {
  .menu {
    margin: 0;
  }
}

/* RESPONSIVE TABLET (≤1024px) */
@media screen and (max-width: 1024px) {
  .menu-header h1 {
    font-size: 44px;
  }

  .menu-header p {
    font-size: 18px;
  }
}

/* RESPONSIVE MOBILE (≤768px) */
@media screen and (max-width: 768px) {
  .menu-header {
    padding: 40px 0px 10px 0px;
  }

  .menu-header .tagline {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .menu-header h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .menu-header p {
    font-size: 16px;
    max-width: 100%;
  }
}

/* RESPONSIVE SMALL MOBILE (≤480px) */
@media screen and (max-width: 480px) {
  .menu-header {
    padding: 40px 0px 10px 0px;
  }

  .menu-header h1 {
    font-size: 28px;
  }

  .menu-header p {
    font-size: 15px;
  }
}