/* Base / reset léger */
html, body { margin: 0; padding: 0; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Empêcher le scroll de la page quand la lightbox est ouverte */
body.modal-open {
  overflow: hidden;
}

/* formes flottantes désactivées */
body::before, body::after { display: none; }
