/* Sfondo con immagine bokeh reale */
html, body {
  min-height: 100%;
  background: #f4f4f4 url("../immagini/christmas-card-template.jpg") center center / cover no-repeat fixed !important;
  position: relative;
}

/* Leggera velatura per leggibilità */
html body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.18));
  opacity: 1;
}

/* Fix iPhone/iPad: background senza attachment fixed */
@media (max-width: 768px) {
  html, body {
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
  }
  html body::before {
    position: absolute;
  }
}
