/* ====== Latin Modern (auto-hébergée) ======
Placez les .woff2 dans assets/fonts/ (noms ci-dessous).
Vous pouvez convertir les .otf en .woff2 avec woff2_compress.
*/
@font-face {
  font-family: "Latin Modern";
  src: url("fonts/lmroman-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Latin Modern";
  src: url("fonts/lmroman-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Latin Modern";
  src: url("fonts/lmroman-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Latin Modern";
  src: url("fonts/lmroman-bolditalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* Optionnel : monospace */
@font-face {
  font-family: "Latin Modern Mono";
  src: url("fonts/lmmono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #0f1320;
  --bg-alt:#121729;
  --text: #e8ecf1;
  --muted:#a8b3c2;
  --brand:#6ea8fe;
  --card:#151b2f;
  --shadow: 0 10px 25px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Latin Modern", "Times New Roman", Times, serif;
  line-height:1.7;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%) fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{width:min(1100px, 92vw); margin-inline:auto}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(17,21,38,.75);
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{font-weight:800; text-decoration:none; color:var(--text); letter-spacing:.2px}
.site-header nav a{color:var(--muted); text-decoration:none; margin-left:18px; font-weight:600}
.site-header nav a:hover{color:var(--text)}

.hero{padding:84px 0 64px}
.hero-inner{ text-align:center}
.hero h1{font-size: clamp(32px, 5vw, 54px); line-height:1.05; margin:0 0 8px}
.hero p{color:var(--muted); margin:0 0 22px}
.cta{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}

.btn{
  display:inline-block; padding:12px 18px; border-radius:12px;
  background: var(--brand); color:#0b1020; text-decoration:none; font-weight:800;
  box-shadow: var(--shadow);
}
.btn:hover{filter:brightness(1.05)}
.btn.ghost{background:transparent; color:var(--text); border:1px solid rgba(255,255,255,.22); box-shadow:none}
.btn.small{padding:8px 12px; border-radius:10px; font-weight:700}

.section{padding:48px 0}
.section.alt{background: rgba(255,255,255,.02)}
.section-title{font-size:24px; margin:0 0 18px}

.grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(12, 1fr);
}
.card{
  grid-column: span 12; padding:18px; border-radius:16px; background: var(--card); box-shadow: var(--shadow);
}
.card h3{margin:6px 0 6px}
.card p{color:var(--muted); margin:0 0 12px}
.card .actions{display:flex; gap:10px; flex-wrap:wrap}

@media(min-width:700px){
  .card{grid-column: span 6}
}
@media(min-width:980px){
  .card{grid-column: span 4}
}

.list{margin:0; padding-left:18px}
.list li{margin:6px 0}
.list a{color:var(--brand); text-decoration:none}
.list a:hover{text-decoration:underline}

.site-footer{border-top:1px solid rgba(255,255,255,.08); padding:24px 0; color:var(--muted)}

code, pre, kbd, samp{
  font-family: "Latin Modern Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
/* Palette liens sur fond sombre */
:root{
  --link-color:  #7dd3fc;   /* lien normal (cyan clair lisible) */
  --link-hover:  #bae6fd;   /* au survol */
  --link-visited:#93c5fd;   /* visité */
  --focus-ring:  #bae6fd;   /* focus clavier/accessibilité */
}

/* Règles globales */
a{
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
a:hover,
a:active{ color: var(--link-hover); }
a:visited{ color: var(--link-visited); }
a:focus-visible{
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Titres cliquables : garder l’apparence du titre */
.section-title a,
.card h3 a{
  color: inherit;
  text-decoration: none;
}
.card h3 a:hover{ text-decoration: underline; }

/* (Option) n’appliquer la palette qu’aux liens dans les cartes */
.grid .card a{ color: var(--link-color); }
.grid .card a:hover{ color: var(--link-hover); }
.grid .card a:visited{ color: var(--link-visited); }

/* Liens dans les cards (hors titres) */
.grid .card li > a,
.grid .card p > a,
.grid .card .list a,
.grid .card a[href$=".pdf"],
.grid .card a[href^="/assets/pdf/"]{
  color: var(--link-color) !important;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.grid .card li > a:hover,
.grid .card p > a:hover,
.grid .card .list a:hover,
.grid .card a[href$=".pdf"]:hover,
.grid .card a[href^="/assets/pdf/"]:hover{
  color: var(--link-hover) !important;
}
.grid .card li > a:visited,
.grid .card p > a:visited,
.grid .card .list a:visited,
.grid .card a[href$=".pdf"]:visited,
.grid .card a[href^="/assets/pdf/"]:visited{
  color: var(--link-visited) !important;
}

/* Les titres cliquables gardent la couleur du titre */
.card h3 a{
  color: inherit;
  text-decoration: none;
}
.card h3 a:hover{ text-decoration: underline; }

/* === Liens harmonisés sur fond sombre (override global) === */
:root{
  --link-color:  #7dd3fc;  /* normal */
  --link-hover:  #bfe6ff;  /* hover/active */
  --link-visited:#a5b4fc;  /* visited */
}

/* Tout lien du site (priorité haute) */
a,
.site-header nav a,
.list a,
.grid .card a{
  color: var(--link-color) !important;
  text-decoration: none !important;
  text-underline-offset: 0.15em;
}

a:hover,
a:active,
.site-header nav a:hover,
.list a:hover,
.grid .card a:hover{
  color: var(--link-hover) !important;
  text-decoration: none !important;
}

a:visited{
  color: var(--link-visited) !important;
}

/* Accessibilité clavier */
a:focus-visible{
  outline: 2px solid var(--link-hover);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Titres cliquables (choisis) :
   - Si tu veux qu’ils gardent la couleur du titre (blanc) : laisse 'inherit'
   - Si tu veux la même couleur que les autres liens : remplace par var(--link-color)
*/
.card h3 a,
.section-title a{
  color: inherit !important;          /* ou: var(--link-color) */
  text-decoration: none !important;
}
