/* reset_2026.css - Modern Reset for Liquid Glass Layouts */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Migliora la resa dei font su sfondi colorati/sfocati */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
  /* Impedisce il rimbalzo dello scroll che romperebbe l'effetto vetro fisso */
  overflow-x: hidden;
}

body {
  line-height: 1.5; /* Più moderno di 1 per la leggibilità */
  font-family: 'Inter', system-ui, -apple-system, sans-serif; /* Font puliti per il glassmorphism */
  -webkit-text-size-adjust: 100%;
}

/* Reset elementi semantici */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Link e Bottoni: fondamentali per il glassmorphism */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button, input, select, textarea {
  font: inherit;
  background: transparent;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Immagini responsive */
img, picture, svg, video, canvas {
  max-width: 100%;
  display: block;
}