.contact-page-hero {
  position: relative;
  background-image: url("/static/assets/img/restaurant-inside.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;
}

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

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

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

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

.contact-map-section {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}