/*
 Theme Name:   Plurale
 Author URI:   https://plurale.studio
 Template:     bricks
 Version:      1
 Text Domain:  bricks
*/

/* Contenitore principale: attiva scroll snapping e scroll suave.
   Se vuoi che tutto il body faccia snap, applicalo a html/body. */
html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth; /* scroll morbido per link e scroll programmatico */
  transition: background-color 1000ms ease; /* transizione morbida di background */
  background-color: var(--page-bg, var(--mattone)); /* variabile CSS per cambio dinamico */
}


/* Preferenza ridurre movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html, body { transition: none; }
}
