/* ===== Thème pastel girly ===== */
:root{
  --bg: #fff7fb;            /* rose très clair de fond */
  --paper: #ffffff;         /* cartes blanches */
  --ink: #29151f;           /* texte */
  --muted: #7a5c67;         /* texte secondaire */
  --brand: #e86a9a;         /* rose vif (accents) */
  --brand-2: #f7b2cc;       /* rose doux */
  --ring: #ffd6e8;          /* focus & contours légers */
  --radius: 18px;
  --shadow: 0 12px 30px rgba(233, 95, 149, 0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #ffe6f1 0%, transparent 60%),
    radial-gradient(1200px 600px at 110% 10%, #ffeaf4 0%, transparent 60%),
    var(--bg);
  line-height: 1.6;
}

/* ===== Containers ===== */
.container{ width: min(100%, 980px); margin: 0 auto; padding: 16px; }

.grid{
  display: grid;
  gap: 16px;
}
@media (min-width: 800px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
}

/* ===== Header & Footer ===== */
.site-header{
  position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ring);
}
.site-header h1{
  margin: 6px 0 2px;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
  letter-spacing: .5px;
}
.tagline{ margin: 0 0 6px; color: var(--muted); }

.site-footer{
  margin-top: 20px;
  border-top: 1px solid var(--ring);
  background: rgba(255,255,255,0.6);
}

/* ===== Cartes ===== */
.card{
  background: var(--paper);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(233, 95, 149, 0.18);
  border-color: var(--brand-2);
}
.card h2{ margin: 4px 0 8px; font-size: 1.2rem; }
.card .note{ color: var(--muted); margin-top: 8px; }

/* ===== Listes “chips” (intérêts) ===== */
.chips{
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chips li{
  background: #fff;
  border: 1px dashed var(--brand-2);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .92rem;
  transition: background .15s ease, transform .15s ease;
}
.chips li:hover{ background: #fff2f7; transform: translateY(-2px); }

/* ===== Liens (contacts) ===== */
.links{ list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 8px; }
.links a{
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 10px 12px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.links a:hover{
  transform: translateY(-2px);
  border-color: var(--brand-2);
  box-shadow: 0 10px 22px rgba(233, 95, 149, 0.12);
}

/* ===== Bouton “Retour” façon pill ===== */
.back{
  display: inline-block;
  margin-top: 6px;
  text-decoration: none;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 999px;
  padding: 6px 12px;
  transition: background .15s ease, transform .15s ease, border-color .15s;
}
.back:hover{ background: #fff0f6; transform: translateY(-1px); border-color: var(--brand-2); }

/* ===== Focus accessibilité ===== */
a:focus-visible{
  outline: 3px solid var(--brand-2);
  outline-offset: 2px;
}
