/* ============================================
 base.css — Styles globaux
 ============================================ */

@font-face {
  font-family: "TAN Pearl";
  src:
    url("/Fonts/TAN-Pearl-Font/TAN-Pearl-Regular.woff2") format("woff2"),
    url("/Fonts/TAN-Pearl-Font/TAN-Pearl-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  background-color: var(--color-purple);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--color-ivory);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-black);
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TAN Pearl", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

p,
a,
button {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
