@charset "UTF-8";
/*html, body {
    overflow-x: hidden; 
    width: 100%;
    max-width: 100%;
    position: relative; 
}

main {
    overflow-x: hidden;
}
    */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #f8f8f8;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.bloc {
  width: 100%;
}
.bloc .content {
  padding: 0 40px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.site-header,
.site-footer {
  background: #222;
  color: #fff;
  padding: 15px 0;
}

.site-footer {
  margin-top: 20px;
}

.logo {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/********************* bloc ******************/
.bloc-focus {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  border: 3px #256b4c solid;
}

.bloc-focus-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #256b4c;
  text-align: center;
}

.bloc-focus-texte {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.bloc-grand-titre {
  padding: 60px 0;
  text-align: center;
  color: #111;
  transition: background-color 0.3s;
}

.bloc-grand-titre .container {
  width: min(1000px, 90%);
  margin: 0 auto;
}

.grand-titre-titre {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  color: inherit;
}

.grand-titre-intro {
  font-size: 1.2rem;
  color: inherit;
  line-height: 1.6;
}

.bloc-grand-titre[style*="#256b4c"],
.bloc-grand-titre[style*="#337357"],
.bloc-grand-titre[style*="#000000"] {
  color: #fff;
}

.bloc-paragraphe {
  padding: 60px 0;
  background: #fff;
  color: #333;
}

.bloc-paragraphe .container {
  width: min(800px, 90%);
  margin: 0 auto;
}

.paragraphe-titre {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #256b4c;
  text-align: left;
}

.paragraphe-soustitre {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 25px;
  text-align: left;
}

.paragraphe-texte {
  font-size: 1.05rem;
  line-height: 1.7;
}

.paragraphe-texte p + p {
  margin-top: 1em;
}

/* ==========================================================
   🖼️ Bloc Images – Grille 3 colonnes responsive
   ========================================================== */
.bloc-images {
  padding: 60px 0;
  background: #fafafa;
}

.bloc-images .container {
  /* on élargit légèrement le container pour respirer */
  max-width: 1100px;
  margin: 0 auto;
}

.image-grid {
  display: grid;
  gap: 20px;
  /* ✅ Par défaut : 3 colonnes bien réparties */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

/* 🔹 Tablette : 2 colonnes */
@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* 🔹 Mobile : 1 colonne */
@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   🎨 Style des figures et images
   ========================================================== */
.image-grid figure {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.image-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ Image occupe toute la largeur de la cellule, sans la casser */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ✅ Légende sous l’image */
.image-grid figcaption {
  text-align: center;
  font-size: 0.95rem;
  padding: 10px 8px;
  color: #555;
  background: #f7f7f7;
  flex-grow: 1;
}

.bloc-articles {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.bloc-articles__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.bloc-articles__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bloc-articles__list li + li {
  margin-top: 1rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}
.bloc-articles__link {
  font-weight: 600;
  color: #256b4c;
  text-decoration: none;
}
.bloc-articles__link:hover {
  text-decoration: underline;
}
.bloc-articles__date {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.25rem;
}
.bloc-articles__excerpt {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

/* ===========================================================
   📰 Bloc Derniers articles
   =========================================================== */
.bloc-articles {
  margin: 3rem 0;
  padding: 2.5rem 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.bloc-articles:hover {
  background: #f8fcf9;
}

.bloc-articles img {
  width: 100%;
  display: block;
}

/* ----- Titre du bloc ----- */
.bloc-articles__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #256b4c;
  /* ton vert principal */
  text-align: left;
  position: relative;
}

.bloc-articles__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #256b4c;
  margin-top: 0.4rem;
  border-radius: 2px;
}

/* ----- Liste ----- */
.bloc-articles__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ----- Élément ----- */
.bloc-articles__item {
  padding: 1.5rem 0;
  border-top: 1px solid #e6e6e6;
}

.bloc-articles__item:first-child {
  border-top: none;
}

/* ----- Lien ----- */
.bloc-articles__link {
  color: #1f4037;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.bloc-articles__link:hover {
  color: #256b4c;
  text-decoration: underline;
}

/* ----- Nom de l’article ----- */
.bloc-articles__name {
  font-size: 1.1rem;
}

/* ----- Date ----- */
.bloc-articles__date {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

/* ----- Extrait ----- */
.bloc-articles__excerpt {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  max-width: 800px;
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .bloc-articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .bloc-articles__item {
    border: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .bloc-articles__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
/* ===========================================================
   📰 Page Article - Style cohérent avec page.php
   =========================================================== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.article-illustration {
  margin-bottom: 1.5rem;
  text-align: center;
}

.article-illustration img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  justify-content: flex-start;
}

.article-meta span,
.article-meta time {
  background: #f1f5f3;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.article-body h2,
.article-body h3 {
  color: #256b4c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body p + p {
  margin-top: 1rem;
}

.article-download {
  text-align: center;
  margin-top: 2rem;
}

.btn-download {
  background: #256b4c;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-download:hover {
  background: #1e4f39;
}

/* Sidebar */
.article-sidebar {
  margin-top: 3rem;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.article-sidebar h3 {
  color: #256b4c;
  margin-bottom: 1rem;
}

.article-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-sidebar li + li {
  margin-top: 0.5rem;
}

.article-sidebar a {
  color: #1f4037;
  text-decoration: none;
}

.article-sidebar a:hover {
  text-decoration: underline;
}

/* Admin edit button */
.article-admin-tools {
  margin-top: 3rem;
  text-align: center;
}

.article-admin-tools .btn-admin {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.article-admin-tools .btn-admin:hover {
  background: #1e40af;
}

.page-header {
  text-align: center;
}

.page-header .intro {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 10px auto 0;
}

.page-content {
  overflow-x: clip;
}
.page-content .container {
  padding: 0;
}

.page-image {
  margin-bottom: 30px;
  text-align: center;
}

.page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.preview-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffeb3b;
  color: #222;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* ================================
   🦶 Footer Navigation
   ================================ */
footer .menu {
  text-align: center;
  margin: 2rem 0 1rem;
}

footer .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .menu li {
  display: inline;
}

footer .menu a {
  color: #777;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

footer .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

footer .menu a:hover {
  color: #fff;
}

footer .menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ================================
   🖼️ HERO SECTION
   ================================ */
.hero {
  position: relative;
  width: 100%;
  height: 40vh;
  /* hauteur flexible selon la taille d’écran */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1) .hero --small;
  background-color-height: 40vh;
}

.hero img {
  width: 100%;
  height: 160%; /* Grande hauteur pour un effet parallax très visible */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: filter 0.5s ease;
  will-change: transform;
  /* Masquée par défaut pour éviter le saut pendant l'init GSAP */
  opacity: 0;
  transform: translateY(0%);
}

/* Classe ajoutée par JS une fois GSAP prêt */
.hero img.parallax-initialized {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero:hover img {
  /* Suppression du scale au hover pour ne pas interférer avec parallax */
}

/* Optionnel : effet de flou doux sur le bord bas */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

/* ================================
   💻 RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
  }
}
.page-cards {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.card-thumb img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==============================
   🌿 Bloc : Navigation page suivante
   ============================== */
.page-nav.buttons {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  margin: 4rem 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
.page-nav.buttons .nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.page-nav.buttons .nav-link img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.page-nav.buttons .nav-link:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
}
.page-nav.buttons .nav-link:hover img {
  transform: scale(1.05);
}
.page-nav.buttons .nav-link.prev {
  justify-content: flex-start;
  text-align: left;
}
.page-nav.buttons .nav-link.prev img {
  order: 0;
}
.page-nav.buttons .nav-link.next {
  justify-content: flex-end;
  text-align: right;
}
.page-nav.buttons .nav-link.next img {
  order: 1;
}
.page-nav.buttons:only-child, .page-nav.buttons > .nav-link:only-child {
  justify-content: center;
}
.page-nav.buttons:only-child .nav-link, .page-nav.buttons > .nav-link:only-child .nav-link {
  max-width: 320px;
}
@media (max-width: 768px) {
  .page-nav.buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .page-nav.buttons .nav-link {
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
  }
  .page-nav.buttons .nav-link img {
    width: 60px;
    height: 60px;
  }
}

.article-list {
  padding: 3rem 0;
}
.article-list .article-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.article-list .article-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-list .article-card .article-thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-list .article-card .article-body {
  padding: 1.5rem;
}
.article-list .article-card .article-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.article-list .article-card .article-title a {
  text-decoration: none;
  color: #111;
}
.article-list .article-card .article-title a:hover {
  color: #2563eb;
}
.article-list .article-card .article-date {
  color: #888;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.75rem;
}
.article-list .article-card .article-excerpt {
  color: #444;
  margin-bottom: 1rem;
}
.article-list .article-card .btn-readmore {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.site-header {
  background: #f8fbfb;
  border-bottom: 1px solid rgba(26, 91, 110, 0.1);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  color: #1a3a44;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
.site-header .container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: #1a5b6e;
  transition: color 0.2s ease;
}
.site-header .logo:hover {
  color: #12414f;
}
.site-header .menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .menu a {
  text-decoration: none;
  color: rgb(79.8, 110.8333333333, 119.7);
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-header .menu a:hover {
  color: #1a5b6e;
  border-color: #1a5b6e;
}

.site-footer {
  background: #f9fafb;
  border-top: 1px solid rgba(26, 91, 110, 0.1);
  color: #5a7d87;
  font-family: "Inter", "Segoe UI", sans-serif;
  padding: 2rem 1.25rem;
  margin-top: 4rem;
}
.site-footer .container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}
.site-footer .menu ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .menu a {
  color: #5a7d87;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-footer .menu a:hover {
  color: #1a5b6e;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .site-header .menu ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
img.logo {
  max-height: 60px;
}

/* ================================
   🔽 Header réduit au scroll
   ================================ */
.site-header {
  transition: all 0.3s ease;
}
.site-header .container {
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
}
.site-header .logo {
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled .container {
  padding: 0.4rem 1.25rem;
}
.site-header.scrolled .logo {
  font-size: 1rem;
}
.site-header.scrolled img.logo {
  max-height: 40px;
}

.animCanvas {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 50px 0;
}

.animCanvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.reveal {
  opacity: 0;
  will-change: opacity, transform;
}

.page-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.page-card:hover {
  transform: translateY(-4px);
}

.page-card img {
  max-width: 100%;
  border-radius: 10px;
}

.page-content {
  margin-top: 2rem;
  line-height: 1.7;
  font-size: 1.1em;
}

/* ===========================================================
   🧱 PAGES LIST — Front
   =========================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin: 2rem;
}

/* -----------------------------------------------------------
   GRID
   ----------------------------------------------------------- */
.pages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .pages-list {
    gap: 1.5rem;
  }
}

/* -----------------------------------------------------------
   PAGE CARD
   ----------------------------------------------------------- */
.page-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 350px;
}
.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.page-card:hover img {
  transform: scale(1.05);
}
.page-card a {
  text-decoration: none;
  color: inherit;
}
.page-card img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.page-card h2 {
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem 0 1.25rem;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}
.page-card h2 a {
  color: inherit;
}
.page-card h2 a:hover {
  color: #0077cc;
}

/* -----------------------------------------------------------
   DARK MODE (optionnel)
   ----------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  .page-card {
    background: #1c1c1c;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.08);
  }
  .page-card h2 {
    color: #f2f2f2;
  }
  .container h1 {
    color: #f2f2f2;
  }
}
.double-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  align-items: flex-start;
  overflow: hidden;
}
.double-image .image-block {
  flex: 1 1 35%;
  max-width: 35%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.double-image .image-block img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.double-image .image-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
@media (max-width: 900px) {
  .double-image .image-block {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.index-alphabetique {
  gap: 0.25rem;
}
.index-alphabetique .btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 0.25rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.index-alphabetique .btn-primary {
  background-color: #98b9ff;
  border-color: #98b9ff;
}
.index-alphabetique .btn-primary:hover {
  background-color: rgb(116.3, 160.7378640777, 255);
  border-color: rgb(116.3, 160.7378640777, 255);
}
.index-alphabetique .btn-outline-secondary.disabled,
.index-alphabetique .btn-outline-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.index-alphabetique a.btn {
  text-decoration: none;
}

.image-block img {
  max-width: 100%;
}

.pagination-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  width: 100%;
  gap: 1rem;
}
.pagination-simple a {
  text-decoration: none;
  color: #2c3e50;
  padding: 0.6rem 1.2rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  font-family: sans-serif;
  font-size: 0.95rem;
}
.pagination-simple a:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.pagination-simple a.previous {
  margin-right: auto;
}
.pagination-simple a.next {
  margin-left: auto;
  text-align: right;
}

@media (max-width: 480px) {
  .pagination-simple {
    flex-direction: column;
    gap: 0.8rem;
  }
  .pagination-simple a {
    width: 100%;
    justify-content: center;
    margin: 0 !important;
  }
}
.taxo-page-section {
  padding: 3rem 0;
}
.taxo-page-section:first-child {
  padding-top: 0;
}

.taxo-page-section .section-title {
  margin-bottom: 2rem;
  text-align: center;
}

.taxo-page-grid {
  display: grid;
  gap: 1.5rem;
}

.taxo-page-grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}

.taxo-page-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}

.taxo-page-grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .taxo-page-grid--3cols,
  .taxo-page-grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .taxo-page-grid {
    grid-template-columns: 1fr;
  }
}
.taxo-page-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.taxo-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.taxo-page-card__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.taxo-page-card__content {
  padding: 1.25rem;
}

.taxo-page-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

.taxo-page-card__title a {
  color: inherit;
  text-decoration: none;
}

.taxo-page-card__title a:hover {
  color: var(--color-primary, #c0392b);
}

.taxo-page-card__excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.taxo-page-card__link {
  display: inline-block;
  font-size: 0.85rem;
}

.taxo-page-section .no-items {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 2rem;
}

.taxo-page-section a.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  color: #000;
  background: #fdfdfd;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.taxo-page-section a.btn.btn--small {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

.taxo-page-section a.btn:hover {
  background: #f3f4f6;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.section-liens-cards {
  padding: 10px 0;
  background: linear-gradient(180deg, #fdfdfd 0%, #f4f7f6 100%);
}
.section-liens-cards .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-liens-cards .titre-principal {
  font-size: 2.5rem;
  color: #1a5b6e;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-liens-cards .cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.section-liens-cards .cards-item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.section-liens-cards .cards-item .main-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.section-liens-cards .cards-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(26, 91, 110, 0.2);
}
.section-liens-cards .cards-item:hover .header .image img {
  transform: scale(1.08);
}
.section-liens-cards .cards-item:hover .btn-fake {
  background: #1a5b6e;
  color: #fff !important;
}
.section-liens-cards .cards-item .header .image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.section-liens-cards .cards-item .header .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.section-liens-cards .cards-item .header .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}
.section-liens-cards .cards-item .header .titre-card {
  padding: 25px 25px 10px;
  font-size: 1.4rem;
  color: #1a5b6e;
  line-height: 1.3;
  margin: 0;
}
.section-liens-cards .cards-item .body {
  padding: 0 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.section-liens-cards .cards-item .body .intro {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.section-liens-cards .cards-item .body .footer-card {
  padding-top: 15px;
}
.section-liens-cards .cards-item .body .footer-card .btn-fake {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid #1a5b6e;
  color: #1a5b6e;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}/*# sourceMappingURL=style.css.map */