/* ==========================================================================
   Base
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

/* scrollbar nascosta (look mobile-first) */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

body {
  /* replica del tuo snippet: altezza minima “mobile safe” */
  min-height: max(884px, 100dvh);
}

/* ==========================================================================
   Decorations
   ========================================================================== */

.boho-gradient {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 210, 0.4) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(242, 204, 143, 0.2) 0%, transparent 40%);
}

/* compatibilità: se in futuro resta qualche riferimento al vecchio nome */
.romantic-gradient {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 210, 0.4) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(242, 204, 143, 0.2) 0%, transparent 40%);
}


