.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: white;
  background:
    linear-gradient(rgba(20,12,8,.20), rgba(20,12,8,.75)),
    url("../assets/photos/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20,12,8,.15), rgba(20,12,8,.78));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1.4s ease both;
}

.hero .label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}

.hero .quote {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero .date {
  font-size: 22px;
  color: var(--ivory);
  margin-bottom: 8px;
}

.hero .families {
  margin-bottom: 30px;
  color: rgba(255,255,255,.9);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-down {
  display: block;
  margin: 28px auto 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 28px;
  line-height: 34px;
  animation: bounce 1.6s infinite;
}

.hero-wave {
  height: 70px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
  background: var(--ivory);
  clip-path: ellipse(75% 100% at 50% 100%);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
