/* ============================================================
   Styles custom minimaux.
   Tout le reste est géré par Tailwind via classes utility.
   ============================================================ */

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fdfbf6; /* cream-50 */
  color: #2a3d4a;            /* ink */
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  letter-spacing: -0.02em;
}

/* Container partagé par toutes les sections */
.container-prose {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container-prose {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Forme organique pour les blobs décoratifs */
.blob-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}