/* ============================================
   Noor — Hero component
   Full-bleed section with layered effects
   - .hero (section) = full viewport width
   - .hero__surface = background + effects (full-bleed)
   - .hero__content = centered content (.container)
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 500px;
  max-height: 850px;
  margin-top: calc(-1 * var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Seam: fade band at the bottom of the hero — kills the hard cut */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 250px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(14, 14, 14, 0) 0%, #0e0e0e 100%);
}

/* --- Surface layers (full-bleed, behind content) --- */

.hero__surface {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--surface-bg);
}

/* --- Content layer (centered via .container) --- */

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(100% - 2 * var(--gutter), var(--content-max));
  margin-inline: auto;
}

.hero__logo {
  width: min(420px, 60vw);
  height: auto;
}
