/* Importation de polices douces et créatives */
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

/* Palette de couleurs */
:root {
  --primary-color: #4682b4; /* Bleu acier doux */
  --secondary-color: #ffcc99; /* Pêche clair */
  --accent-color: #ffb366; /* Pêche plus foncé */
  --background-color: #f9f4f0; /* Beige doux */
  --text-color: #4a4a4a; /* Gris foncé doux */
  --overlay-color: rgba(70, 130, 180, 0.5); /* Bleu translucide */
}

/* Styles Globaux */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Amatic SC', cursive;
  color: var(--primary-color);
  margin: 0.5em 0;
}

/* En-tête */
header {
  background: #ffffff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5em;
  color: var(--primary-color);
}

.logo {
  width: 50px;
  height: auto;
}

nav ul li a {
  color: var(--primary-color);
}

nav ul li a:hover {
  color: var(--accent-color);
}

/* Main */
main {
  flex: 1;
  padding: 0 20px;
}

/* Footer */
footer {
  background-color: #ffffff;
  color: var(--primary-color);
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
}

/* Illustrations */
.illustration {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
}