/* ==========================================================
   GUIDE D’USAGE – Histoire du Collège (structure des pages)
   ----------------------------------------------------------
   • .history-box        → encadré de texte standard (paragraphe, h3, etc.)
   • .history-subhead    → sous-titre dans un cadre, avec éventuellement :
       <span class="history-tag">1830–1840</span> Rôle et limites
   • .history-figure     → image + légende auto-hauteur
       .is-equalized     → optionnel : image pleine hauteur, légende collée en bas
   • .history-grid--twoCols + .history-left
       → disposition 2 colonnes égales, colonne gauche empilée (note + image)
   • .g1418-header.history-box
       → bandeau bleu de page, avec .page-title et .history-subtitle
   ----------------------------------------------------------
   Typo unifiée :
   EB Garamond → titres, sous-titres
   Lora → sous-titres de page
   Corps → taille relative ~1.1rem, interligne 1.58
   ----------------------------------------------------------
   Toute figure spéciale peut utiliser :
       <figure class="history-figure is-equalized"> … </figure>
   ----------------------------------------------------------
   Historique :
   Version unifiée & allégée – octobre 2025
   ========================================================== */

/* ================================================
   Histoire du Collège – CSS unifié & allégé
   ================================================ */

/* --------------------
   Variables globales
   -------------------- */
:root {
  /* Couleurs */
  --hero-blue: #0b3d91;
  --accent-blue-dark: #0b3d91;

  /* Fonds & bordures (clairs) */
  --base-fond: #f2f4f7;
  --box-bg: color-mix(in oklch, var(--base-fond) 88%, white);
  --box-border: 1px solid color-mix(in oklch, var(--base-fond) 70%, black 7%);
  --figure-bg: color-mix(in oklch, var(--base-fond) 92%, white);

  /* Ombres */
  --shadow: 0 .5px 1px rgba(0,0,0,.035), 0 3px 8px rgba(0,0,0,.06);
  --shadow-sm: 0 .5px .5px rgba(0,0,0,.03), 0 2px 4px rgba(0,0,0,.05);

  /* Rounds & spacing */
  --radius: 12px;
  --gap: 16px;

  /* Typos utilitaires */
  --underline-color: currentColor;
  --underline-thick: 2px;
  --underline-offset: 2px;

  /* Pastilles (tags) */
  --chip-bg: #eaf0f8;
  --chip-border: #c9d7ea;
  --chip-text: #0b3d91;
}

@media (prefers-color-scheme: dark) {
  :root {
    --base-fond: #0f172a;
    --box-bg: color-mix(in oklch, var(--base-fond) 92%, white 8%);
    --box-border: 1px solid color-mix(in oklch, var(--base-fond) 75%, white 18%);
    --figure-bg: color-mix(in oklch, var(--base-fond) 90%, white 10%);
    --shadow: 0 .5px .5px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.30);
    --shadow-sm: 0 .5px .5px rgba(0,0,0,.18), 0 2px 4px rgba(0,0,0,.26);

    --chip-bg: #1f2b3e;
    --chip-border: #31445f;
    --chip-text: #cfe2ff;
  }
}

/* Fallback si color-mix non supporté */
@supports not (color: color-mix(in oklch, white, black)) {
  :root {
    --box-bg: #f6f8fb;
    --box-border: 1px solid #e6ebf2;
    --figure-bg: #f9fbfe;
  }
}

/* -------------------------
   Utilitaires texte simples
   ------------------------- */
.txt-bold { font-weight: 700; }
.txt-underline {
  text-decoration: underline;
  text-decoration-color: var(--underline-color);
  text-decoration-thickness: var(--underline-thick);
  text-underline-offset: var(--underline-offset);
}
.txt-accent { color: var(--accent-blue-dark); }

/* ================================================
   Conteneur principal
   ================================================ */
main.history-page {
  /* Variables locales */
  --history-max-w: var(--page-max-w, 1400px);

  max-width: var(--history-max-w);
  margin-inline: auto;
  padding: var(--page-pad, 16px);
  display: grid;
  gap: 20px;
  box-sizing: border-box;
}

/* ================================================
   Titres (hors header bleu)
   ================================================ */
.history-section-title {
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: clamp(1.1rem, .8vw + .8rem, 1.4rem);
  margin: 10px 0 8px;
}
.history-subtitle {
  margin: 0;
  color: #555;
  font-size: clamp(1rem, .8vw + .7rem, 1.125rem);
  font-family: "Lora", serif;
}

/* Sous-titres locaux dans .history-box */
.history-box h2{
  margin: 0 0 8px;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 1vw + 1.1rem, 1.7rem);
  line-height: 1.2;
}
.history-box h3{
  margin: 0 0 6px;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.15rem, .8vw + .9rem, 1.4rem);
  line-height: 1.2;
}

/* ================================================
   Grilles
   ================================================ */
.history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  align-items: stretch;
}

/* 2/3 image + 1/3 texte (rare) */
.history-grid--imageWide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Colonne gauche empilée (note + image) */
.history-grid--twoCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}
.history-left {
  display: flex;
  flex-direction: column;
  gap: 8px;            /* petit espace entre la note et la figure */
  height: 100%;
}

/* ================================================
   Boîtes
   ================================================ */
.history-box {
  border: var(--box-border);
  border-radius: var(--radius);
  background: var(--box-bg);
  padding: 12px 14px;
  box-shadow: var(--shadow);
}
.history-box p {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.2rem);
  line-height: 1.58;
  margin: .5rem 0 .85rem;
}
.history-box ul { margin: .6rem 0 .95rem; padding-left: 1.1em; }
.history-box li { margin: .4rem 0; line-height: 1.58; }
.history-box > :last-child { margin-bottom: 0; }

/* ================================================
   Sous-titres + Tags (OVERRIDE intégré)
   ================================================ */
.history-subhead{
  display:flex; align-items:baseline; flex-wrap:wrap; gap:.4em .6em;
  margin: 0 0 8px;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 0.9vw + 1rem, 1.5rem);
  line-height: 1.2;
  letter-spacing: .1px;
}
.history-tag{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.22em .7em;
  border-radius:999px;
  background: var(--chip-bg);
  border: 1.5px solid var(--chip-border);
  color: var(--chip-text);
  font-size: clamp(.95rem, .35vw + .85rem, 1.05rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  transform: translateY(.5px);
  box-shadow: 0 .5px 0 rgba(0,0,0,.04);
  margin-right:.15em;
}
.history-tag.is-solid{
  background: var(--hero-blue);
  border-color: var(--hero-blue);
  color: #fff;
}

/* Séparateur optionnel sous un sous-titre */
.history-sep{
  height: 1.5px;
  border: none;
  background: var(--chip-border);
  margin: .5rem 0 .9rem;
}

/* ================================================
   Figures
   ================================================ */
/* Par défaut : comportement « auto » (pas d’étirement vertical) */
.history-figure {
  margin: 0;
  border: var(--box-border);
  border-radius: var(--radius);
  background: var(--figure-bg);
  box-shadow: var(--shadow);
  overflow: hidden;

  display: block;           /* pas de grid par défaut */
  height: auto;             /* laisse la figure à sa hauteur naturelle */
}
.history-figure img {
  display: block;
  width: 100%;
  height: auto;             /* évite l’étirement */
  object-fit: contain;      /* pas de recadrage agressif par défaut */
}
.history-figcaption {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.2rem);
  line-height: 1.35;
  color: #444;
  padding: 12px 14px 14px;
  border-top: var(--box-border);
  margin: 0;
}

/* Variante : figure égalisée (image pleine hauteur + légende en bas) */
.history-figure.is-equalized {
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  height: 100% !important;
}
.history-figure.is-equalized > img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;        /* ou 'contain' selon le besoin local */
}

/* Figure utilisée dans la colonne gauche, prenant le reste */
.history-left-figure {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 0;
}
.history-left-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Note texte compacte (haut de colonne gauche) */
.history-left-note { margin: 0; padding: 12px 14px; }
.history-left-note p:last-child,
.history-figcaption p:last-child,
.history-box p:last-child { margin-bottom: 0; }

/* ================================================
   Bandeau titre (header bleu)
   ================================================ */
.g1418-header {
  margin-block: 4px 16px;
  padding: 14px 16px;
}
.g1418-header.history-box{
  background: var(--hero-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.g1418-header .page-title{
  margin: 0;
  line-height: 1.15;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2.2rem);
  color: inherit;
}
.g1418-header .history-subtitle{
  margin: 6px 0 0;
  color: rgba(255,255,255,.92);
  font-family: "Lora", serif;
  font-size: clamp(1rem, .8vw + .7rem, 1.125rem);
}

/* Variante : header solo centré */
.history-header--solo{
  text-align: center;
  margin-block: 4px 8px;
  padding: 16px 18px;
}
.history-header--solo + section{ margin-top: -10px; }

/* ================================================
   Bandeau simple (annoncé sous header)
   ================================================ */
.history-banner {
  background-color: #e3eaf3;
  color: #222;
  border-radius: 10px;
  padding: 6px 10px;
  margin: 6px 0 8px;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.1rem, 1vw + 1rem, 1.4rem);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.history-banner h3{ margin:0; line-height:1.2; font-weight:700; }

/* ================================================
   Pagination
   ================================================ */
.history-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.history-pager a {
  text-decoration: none;
  border: var(--box-border);
  background: var(--box-bg);
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.history-pagecount { opacity: .8; font-variant-numeric: tabular-nums; }
.history-pager a[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ================================================
   Accessibilité & utilitaires
   ================================================ */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.nowrap { white-space: nowrap; }

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 900px){
  .history-grid,
  .history-grid--imageWide,
  .history-grid--twoCols { grid-template-columns: 1fr; }

  .history-left { height: auto; }
  .history-left-figure { flex: 0 0 auto; }

  .history-grid--imageWide .history-figure { display:block; height:auto; }
  .history-grid--imageWide .history-figure img { height:auto; object-fit:initial; }
}

/* === Header: un seul bandeau bleu, sans cadre interne (CSS-only) === */

/* 1) Le header qui a encore .history-box adopte un fond unique bleu */
.g1418-header.history-box{
  background: var(--hero-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-block: 4px 12px;
  padding: 16px 18px;
}

/* 2) Neutralise tout fond/bordure "hérité" DANS le header (évite le cadre interne) */
.g1418-header.history-box :where(h1,h2,h3,.page-title,.history-subtitle,.history-box){
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

/* 3) Titres dans le bandeau (inchangés ailleurs) */
.g1418-header.history-box .page-title{
  color: #fff;
  line-height: 1.15;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2.2rem);
}
.g1418-header.history-box .history-subtitle{
  margin-top: 6px;
  color: rgba(255,255,255,.92);
  font-family: "Lora", serif;
  font-size: clamp(1rem, .8vw + .7rem, 1.125rem);
}

/* ==========================
   Ajouts ciblés pour page 8
   ========================== */

/* 1) Grille « gauche fixe, droite fluide » 
   Utilise la variable --facade-w depuis le HTML (ex. 320px) */
.history-grid--leftFixed{
  --facade-w: 300px;                /* défaut si non fourni en ligne */
  display: grid;
  grid-template-columns: minmax(220px, var(--facade-w)) 1fr;
  gap: var(--gap);
  align-items: stretch;
}

/* 2) Alias 2 colonnes (utile pour les deux lignes suivantes) */
.history-grid--2cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}

/* 3) Centrage vertical doux du contenu dans une box */
.history-box--vcenter{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 4) Filet fin (pour rester cohérent avec ton style) */
.u-filet{
  height: 1px;
  border: 0;
  background: var(--chip-border);
  margin: .6rem 0 .9rem;
}

/* 5) Responsive : en dessous de 900px, toutes ces grilles passent en 1 colonne */
@media (max-width: 900px){
  .history-grid--leftFixed,
  .history-grid--2cols{
    grid-template-columns: 1fr;
  }
}
/* Boîte media “à ras” : pas de padding interne, bord du cadre conservé */
.history-box--flush{
  padding: 0;
  overflow: hidden; /* évite les 1–2 px de débord surcharge */
}
/* La figure prend tout l'espace, sans double bord */
.history-box--flush .history-figure{
  border: 0;                 /* on garde le bord de la .history-box */
  border-radius: inherit;    /* même arrondi que la box */
  height: 100%;              /* colle en bas/haut */
}
/* Variante equalized : image pleine hauteur, légende en bas */
.history-figure.is-equalized{
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  height: 100% !important;
}
.history-figure.is-equalized > img{
  width: 100%;
  height: 100% !important;
  object-fit: cover;         /* pas de bandes blanches */
  display: block;
}
.history-box p:last-child { margin-bottom: 0; }

/* Pour tronquer les images qui deviennent trop courtes quand on réduit la largeur de l'écran, par rapport au cadre texte sur la même ligne. */

/* ====== PATCH "cover" pour figures dans les grilles ====== */
/* 1) Figure = image qui remplit la hauteur + légende en bas */
.history-grid .history-figure{
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;            /* égalise avec la colonne texte */
}

/* 2) Le conteneur visuel occupe toute la hauteur et masque le recadrage */
.history-grid .history-figure .media{
  min-height: 0;
  overflow: hidden;
}

/* 3) L'image remplit et se recentre (recadrage propre, sans distorsion) */
.history-grid .history-figure .media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 4) Mobile : on revient à un rendu "contain" quand ça passe en 1 colonne */
@media (max-width: 900px){
  .history-grid .history-figure{
    display: block;
    height: auto;
  }
  .history-grid .history-figure .media img{
    height: auto;
    object-fit: contain;   /* pour éviter un recadrage trop agressif en pile */
  }
}

/* ===== Effet hover sur les images, ajouté pour faire joli, sur écran, pas mobile ===== */
/* ===== Effet hover subtil sur les figures ===== */
@media (hover: hover) and (pointer: fine){
  .history-grid .history-figure{
    --hover-scale: 1.03;
    --hover-bright: 1.02;
    --hover-dur: .35s;
  }

  /* Assure le masquage du débordement (utile avec object-fit: cover) */
  .history-grid .history-figure .media{
    overflow: hidden;
  }

  /* Prépare l'image à l'animation */
  .history-grid .history-figure .media img{
    transform-origin: center center;
    transition: transform var(--hover-dur) ease, filter var(--hover-dur) ease;
    will-change: transform;
  }

  /* Hover + focus clavier (si l’image est dans un lien) */
  .history-grid .history-figure:hover .media img,
  .history-grid .history-figure:focus-within .media img{
    transform: scale(var(--hover-scale));
    filter: brightness(var(--hover-bright));
  }

  /* Optionnel : ombre un peu plus marquée au survol, sans bouger la hauteur */
  .history-grid .history-figure{
    transition: box-shadow .25s ease;
  }
  .history-grid .history-figure:hover,
  .history-grid .history-figure:focus-within{
    box-shadow: 0 .5px 1px rgba(0,0,0,.05), 0 6px 14px rgba(0,0,0,.10);
  }
}

/* Accessibilité : anneau visible si figure contient un lien focusable */
.history-grid .history-figure a:focus-visible{
  outline: 3px solid var(--hero-blue);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Respecte les préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce){
  .history-grid .history-figure .media img{ transition: none; }
  .history-grid .history-figure{ transition: none; }
}

.history-page--agout .history-box ul {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Page Maisons sur l'Agout : air entre l'intro pleine largeur et la première grille */
.history-page--agout section > .history-box + .history-grid {
  margin-top: 1.5rem;  /* ajuste 1rem / 2rem selon ton œil */
}

/* Maisons sur l'Agout – bloc "Métiers liés à l'eau – lexique" */

/* 1) Centrer le titre dans le rectangle highlight */
.history-page--agout section[aria-label="Métiers liés à l’eau – lexique"] 
  .history-box--highlight {
  text-align: center;
}

/* 2) Ajouter de l'air sous ce rectangle avant la grille 2 colonnes 
.history-page--agout section[aria-label="Métiers liés à l’eau – lexique"] 
  .history-box--highlight {
  margin-bottom: 1.5rem;   augmente à 2rem si tu veux plus d'espace 
}*/

.history-page section > .history-box + .history-grid {
  margin-top: 1.5rem;
}

.history-box dl dt {
  font-weight: 700;
}

/* Mini-menu / onglets pour les pages Histoire (monuments, etc.) */
.history-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 8px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--base-fond) 85%, white);
}

.history-subnav a {
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: #fff;
  font-size: 0.98rem;
  font-family: "Lora", system-ui, -apple-system, sans-serif;
  white-space: nowrap;
}

.history-subnav a:hover {
  background: var(--chip-bg);
}

.history-subnav a.is-active,
.history-subnav a[aria-current="page"] {
  background: var(--hero-blue);
  border-color: var(--hero-blue);
  color: #fff;
  font-weight: 600;
}
@media (max-width: 600px){
  .history-subnav {
    border-radius: 12px;
  }
  .history-subnav a {
    white-space: normal;
  }
}
