.hero {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: calc(50vh + 75px);
}

.hero-title {
  color: white;
  font-size: calc(50px + 2vw);
  font-weight: bold;
  box-shadow: black;
  text-shadow: 5px 3px 5px rgb(24, 24, 24);
}

.hero-body {
  padding: 30vh 1.5rem 1rem;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
  color: white;
  font-size: 2rem;
  text-shadow: 2px 2px 2px black;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h2 {
  /* color: var(--secondary); */
  font-size: 1em;
}

.is-home .hero-content h2 {
  margin-bottom: 1em;
}

.hero-content h4 {
  color: var(--primary);
  font-size: 0.6em;
  margin-bottom: 1em;
}

.hero-content .ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-content a {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  min-width: 100px;
  box-shadow: 1px 1px 5px black;
  background: var(--secondary);
  border: none;
  transition: all 0.3s ease-out;
  cursor: pointer;
  outline: none;
  font-size: 0.55em;
  width: 150px;
  margin: 0.5rem;
  padding: 0.25em 1em;
  text-shadow: none;
  white-space: nowrap;
}

.hero-content .ctas a:nth-child(2) {
  background: var(--primary);
}

.hero-content a:hover {
  opacity: 0.8;
}

/* pages */
.is-home {
  background-image: url('../images/homepage-hero.jpg');
  padding-top: 100vh;
}
.is-menu {
  background-image: url('../images/menu.jpg');
}
.is-catering {
  background-image: url('../images/catering.jpg');
}
.is-gallery {
  background-image: url('../images/gallery.jpg');
}
.is-events {
  background-image: url('../images/event.jpg');
}
.is-contact {
  background-image: url('../images/contact.jpg');
}

@media only screen and (max-device-width: 1200px) {
  .hero {
    background-attachment: unset;
  }
}

@media (min-width: 767px) {
  .hero-content {
    font-size: 3rem;
  }

  .hero-content a {
    width: 250px;
  }
}
