/* CrescendoYogando custom styles */
/* Additional styles loaded after Tailwind */

/**
 * Bande di testata pagina — sfondo più vivo del cream piatto:
 * gradiente caldo + “blob” brand (#8690be, #5f7995) e tocco coral.
 */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #fbf6ed;
  background-image: linear-gradient(
    168deg,
    #fbf6ed 0%,
    #faf8f5 45%,
    #fbf6ed 100%
  );
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 115% 85% at 0% -5%, rgba(134, 144, 190, 0.06), transparent 58%),
    radial-gradient(ellipse 90% 70% at 100% 5%, rgba(95, 121, 149, 0.04), transparent 52%),
    radial-gradient(ellipse 75% 55% at 55% 100%, rgba(212, 149, 106, 0.03), transparent 58%),
    radial-gradient(ellipse 45% 35% at 20% 85%, rgba(134, 144, 190, 0.02), transparent 55%);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}
