/* 🌍 Fond global avec texture parchemin + vignette */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif;
  color: #3e2723;

  background-image:
    linear-gradient(rgba(253, 245, 230, 0.9), rgba(253, 245, 230, 0.9)),
    url('/images/parchemin1.jpg'); /* ✅ chemin absolu fonctionnel */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* ⚙️ Engrenages en filigrane */
body::before {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('/images/engrenages.png'); /* ✅ chemin absolu fonctionnel */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}