/* ============================================================
   home-hero.css — Home Hero
   ─────────────────────────────────────────
   PURPOSE : Headline, first step and the decorative iris behind
             them (html-templates/home/hero.html).
   ============================================================ */

.home-hero {
  position: relative;
  /* Above later sections, so the search results can overlap them. */
  z-index: 1;
  isolation: isolate;
  display: flex;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) 0 clamp(8px, 2vw, 16px);
  text-align: center;
}

.home-hero__art {
  position: absolute;
  z-index: -1;
  top: clamp(-40px, -3vw, 0px);
  left: 50%;
  width: min(720px, 130vw);
  height: auto;
  transform: translateX(-50%);
  opacity: 0.75;
  pointer-events: none;
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
}

.home-hero__title {
  margin-top: 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(2.15rem, 5.4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}

.home-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.home-hero__lead {
  max-width: 540px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

/* ── Arabic ───────────────────────────────────────────────────── */
html[dir="rtl"] .home-hero__title {
  font-family: 'IBM Plex Sans Arabic', 'Tajawal', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: normal;
}

html[dir="rtl"] .home-hero__title em {
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 520px) {
  .home-hero {
    padding-top: 36px;
  }

  .home-hero__art {
    top: -24px;
    width: 150vw;
    opacity: 0.6;
  }

  .home-hero__title {
    margin-top: 12px;
    font-size: clamp(1.95rem, 8.6vw, 2.3rem);
  }

  html[dir="rtl"] .home-hero__title {
    line-height: 1.35;
  }

  .home-hero__lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .home-hero__actions {
    flex-direction: column;
    align-self: stretch;
    gap: 10px;
    margin-top: 26px;
  }

  .home-hero__actions .home-btn {
    min-height: 52px;
    border-radius: 14px;
  }
}
