* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;

  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: clamp(48px, 10vw, 110px);
  color: white;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.subtitle {
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(18px, 3.6vw, 34px);
  color: white;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}
