/* HERO MODULE */
.hero-wrapper {
  width: 100%;
  position: relative;
  z-index: var(--z-content);
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 20px;

  /* Top-to-bottom dark gradient:
Starts dark at the top for title legibility,
fades to total transparency at the bottom. */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content {
  max-width: 900px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
  color: var(--text-main);
  /* Text shadow adds extra depth against busy backgrounds */
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.9;
  color: var(--text-main);
}
