/* ---------- PALETTE OFFICIELLE ---------- */
:root {
  --accent: #E05CBB;         /* Magenta poudré */
  --accent-light: #FFDFA6;   /* Jaune sable */
  --bg-light: #EAF2FF;       /* Bleu très pâle */
  --text: #1C1F26;           /* Anthracite */
  --neutral: #D8D6E5;        /* Gris lilas */
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
.header {
  width: 100%;
  padding: 15px 20px;
  background: white;
  border-bottom: 1px solid var(--neutral);
  display: flex;
  justify-content: center;
}

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

/* ---------- HERO ---------- */
.hero {
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.cta:hover {
  background: var(--accent-light);
  color: var(--text);
}

/* ---------- TOOLS SECTION ---------- */
.tools-section {
  padding: 40px 20px;
  text-align: center;
}

.tools-section h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.tools-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.tool-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--neutral);
  text-align: left;
}

.tool-card h3 {
  margin-bottom: 10px;
}

.tool-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

.tool-btn:hover {
  background: var(--accent-light);
  color: var(--text);
}

/* ---------- ABOUT ---------- */
.about {
  padding: 40px 20px;
  background: white;
  margin-top: 40px;
}

.about h2 {
  margin-bottom: 15px;
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
}
