/* =========================================================
   HERO  —  navy overlay, couple-1 photo
========================================================= */

.hero {
  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    linear-gradient(
      rgba(17, 28, 40, .45),
      rgba(17, 28, 40, .70)
    ),
    url("../images/couple-hero.jpg") center / cover no-repeat;

  color: white;
}

/* Fallback background colour if image hasn't loaded yet */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e2d3d 0%, #2a4060 100%);
  z-index: -1;
}

.hero-content {
  padding: 30px;
  animation: heroReveal 2s ease;
}

.hero-small {
  letter-spacing: 6px;
  font-size: 11px;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 30px;
}

.hero-names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(75px, 20vw, 160px);
  line-height: .85;
  color: var(--blush);
}

.hero-and {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin: 20px;
  opacity: .8;
}

.hero-date {
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  letter-spacing: 5px;
  opacity: .9;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;

  opacity: .7;
}
