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

body.admin-bar .hero{
  min-height: calc(100vh - 32px);
}

body{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
}

h1, h2, h3, h4, h5{
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================================
   GLOBAL GRADIENT TITLES – PRO
============================================================ */

/* ---------- HERO H1 ---------- */
/* kõik h1, mis on hero sees */
.hero h1{
  background: linear-gradient(
    90deg,
    var(--hero-title-from) 0%,
    var(--hero-title-to) 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* parem render */
  text-rendering: optimizeLegibility;
}

/* ---------- SECTION TITLES ---------- */
/* sektsioonide pealkirjad */
.section h2,
.section h3{
  background: linear-gradient(
    90deg,
    var(--section-title-from) 0%,
    var(--section-title-to) 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   GLOBAL SECTION HEADERS – BLACK → PURPLE GRADIENT
============================================================ */

.section-header h2{
  background: linear-gradient(
    90deg,
    #0f172a 0%,      /* must algus */
    #6d28d9 100%     /* sügav lilla lõpp */
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent !important; /* ⬅️ see oli puudu */
}

