/* =========================
   Thème Bonbons / Candy
   ========================= */

/* Palette de couleurs */
:root {
  --rose-bonbon: #ff5fa2;      /* bubble-gum */
  --bleu-candy: #6fd3ff;       /* barbe à papa */
  --jaune-citron: #ffe066;     /* bonbon acidulé */
  --violet-raisin: #9b5de5;    /* raisin */
  --vert-pomme: #4ecdc4;       /* pomme */
  --blanc-sucre: #fffafc;      /* fond doux */
  --gris-chocolat: #4a4a4a;    /* texte */
}

/* Base */
body {
  font-family: "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
  background: linear-gradient(135deg, var(--bleu-candy), var(--blanc-sucre));
  color: var(--gris-chocolat);
  margin: 0;
  padding: 30px;
}

/* Titres */
h1 {
  color: var(--rose-bonbon);
  text-align: center;
  font-size: 2.8em;
  text-shadow: 2px 2px 0 var(--jaune-citron);
  margin-bottom: 30px;
}

h2 {
  color: var(--violet-raisin);
  border-bottom: 4px dotted var(--vert-pomme);
  padding-bottom: 5px;
  margin-top: 40px;
}

/* Paragraphes */
p {
  line-height: 1.7;
  font-size: 1.05em;
  margin-bottom: 15px;
}

/* Liens */
a {
  color: var(--rose-bonbon);
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to right, var(--jaune-citron), var(--

