/* Body setup */
.page-body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #111827; /* gray-900 */
    letter-spacing: -0.015em;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Page container */
  .page-container {
    padding: 0 3rem;
    padding-top: 8rem; /* equivalent à mt-32 */
    padding-bottom: 5rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Sections */
  .section {
    margin-bottom: 8rem; /* space-y-32 */
    scroll-margin-top: 8rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Titles */
  .section-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .main-title {
    font-size: 5rem; /* text-7xl */
    font-weight: 900;
    font-family: 'Boska', serif; /* si tu utilises font-bos */
    margin-bottom: 1.5rem;
  }
  
  /* Paragraphs & text */
  .emoji {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 6rem;
    margin-bottom: 1rem;
  }
  
  .intro-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .mt-12 {
    margin-top: 3rem;
  }
  
  .text-container {
    max-width: 800px;   /* largeur maximale du texte */
    margin: 0 auto;     /* centre horizontalement */
    text-align: center; /* centre le texte */
  }
  .credits {
    text-align: center;
  }
  
  .credits .text-lg {
    font-size: 1.125rem; /* équivalent de text-lg */
  }
  
  .credits .font-bold {
    font-weight: bold;
  }
  
  .credits .font-bos {
    font-family: 'Bos', sans-serif; /* exemple, adapte selon ta police */
  }
  
  .credits .mt-1 {
    margin-top: 0.25rem;
  }
  
  .credits .mt-8 {
    margin-top: 2rem;
  }
  
  .credits .mt-12 {
    margin-top: 3rem;
  }
  
  /* Optional: smooth scroll for anchor links */
  html {
    scroll-behavior: smooth;
  }