/* ===========================================
   ALBIMINIFIG - CSS Principal v2
   =========================================== */

:root {
  --bordeaux: rgba(140,39,56,0.97);
  --bordeaux-sol: #8c2738;
  --gris-bleu: #52646f;
  --gris-clair: #b8c8d2;
  --gris-fond: #ddedf7;
  --blanc: #ffffff;
  --dark: #404040;
  --texte: #222222;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { -webkit-font-smoothing:antialiased; scroll-behavior:smooth; }
body { font-family:'Lato',sans-serif; font-size:16px; line-height:1.7; color:var(--texte); background:#fff; overflow-x:hidden; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

.container { width:100%; max-width:1200px; margin:0 auto; padding:0 30px; }

/* ---- BOUTONS ---- */
.btn {
  display:inline-block; padding:15px 28px;
  font-family:'Lato',sans-serif; font-size:15px; font-weight:700;
  cursor:pointer; border:none; transition:background-color .2s, color .2s;
  text-align:center;
}
.btn-blanc { background:#fff; color:rgba(0,0,0,.67); }
.btn-blanc:hover { background:var(--gris-clair); }
.btn-bordeaux { background:var(--bordeaux); color:#fff; }
.btn-bordeaux:hover { background:var(--gris-bleu); color:#000; }

/* ============================================
   NAVBAR
   ============================================ */
.site-header {
  background:var(--bordeaux);
  position:sticky; top:0; z-index:1000;
  box-shadow:0 2px 6px rgba(0,0,0,.3);
  overflow:visible;
}
.navbar {
  display:flex; align-items:center; justify-content:space-between;
  height:80px; max-width:1200px; margin:0 auto; padding:0 20px;
  overflow:visible;
}
.navbar-logo a { display:flex; align-items:center; gap:10px; }
.navbar-logo img { height:80px; width:auto; margin-top:0px; filter:drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.navbar-logo .site-name {
  color:#fff; font-size:16px; font-weight:900;
  letter-spacing:.5px; line-height:1.2;
}
.navbar-links { display:flex; align-items:center; gap:2px; }
.navbar-links a {
  color:rgba(255,255,255,.95); font-size:14px; font-weight:700;
  padding:8px 13px; border-radius:5px;
  transition:background .2s;
}
.navbar-links a:hover,
.navbar-links a.current { background:rgba(255,255,255,.18); }

.navbar-social { display:flex; gap:8px; }
.navbar-social a {
  color:rgba(255,255,255,.9); font-size:13px; font-weight:700;
  padding:6px 12px; border-radius:5px;
  border:1px solid rgba(255,255,255,.35);
  transition:background .2s, border-color .2s;
}
.navbar-social a:hover { background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.7); }

/* Burger */
.burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.burger span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all .3s; }
.burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display:none; background:var(--bordeaux);
  border-top:1px solid rgba(255,255,255,.2); padding:10px 20px 20px;
}
.mobile-menu.open { display:block; }
.mobile-menu a {
  display:block; color:#fff; font-size:15px; font-weight:700;
  padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1);
}
.mobile-menu a:last-child { border:none; }

/* ============================================
   PAGE D'ACCUEIL - HERO
   ============================================ */
.hero {
  position:relative; min-height:600px;
  background:#b8c8d2 center/cover no-repeat;
  display:flex; align-items:center;
}
.hero::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 65%, transparent 100%);
}
.hero-inner {
  position:relative; z-index:2;
  max-width:1200px; margin:0 0 0 120px; padding:160px 30px;
}
.hero-box {
  background:var(--bordeaux); padding:34px 42px;
  max-width:500px; box-shadow:0 2px 4px rgba(0,0,0,.4);
  position:relative; top:160px;
}
.hero-box h1 {
  font-size:26px; font-weight:900; text-transform:uppercase;
  color:#fff; letter-spacing:.3px; margin-bottom:12px; line-height:1.3;
}
.hero-box h2 {
  font-size:36px; font-weight:900;
  color:#fff; margin-bottom:20px; line-height:1.2;
}
.hero-box p {
  font-size:15px; font-weight:700; color:rgba(255,255,255,.95);
  margin-bottom:24px; line-height:1.65;
}


/* ============================================
   SECTION REJOINDRE + HORAIRES CÔTE À CÔTE
   ============================================ */
.section-rejoindre-horaires { background:#fff; padding:50px 0; }
.rh-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.rh-rejoindre { display:flex; flex-direction:column; gap:16px; }
.rh-rejoindre img { width:100%; border-radius:5px; filter:drop-shadow(0 2px 10px rgba(0,0,0,.15)); }
.rh-rejoindre-texte h2 { font-size:20px; font-weight:900; color:var(--gris-bleu); margin-bottom:10px; }
.rh-rejoindre-texte p { font-size:14px; color:#555; margin-bottom:16px; line-height:1.7; }
.rh-horaires { background:var(--bordeaux); padding:28px; border-radius:5px; }
.rh-horaires .horaires-liste { display:flex; flex-direction:column; gap:6px; }
.rh-horaires .horaire-item { display:flex; align-items:center; }
.rh-horaires .horaire-num { display:none; }
.rh-horaires .horaire-label { font-size:18px; font-weight:900; color:#fff; margin-left:0; line-height:1.2; }
.rh-horaires .horaires-note { font-size:13px; font-weight:300; color:rgba(255,255,255,.85); line-height:1.6; margin-top:14px; }
.rh-horaires .horaires-photos { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.rh-horaires .horaires-photos img { width:100%; height:220px; object-fit:cover; border-radius:4px; }



/* ============================================
   SECTION JEUX - grille bordeaux avec logos
   ============================================ */
.section-jeux { background:var(--bordeaux); padding:60px 0; }
.section-titre { text-align:center; margin-bottom:40px; }
.section-titre h2 {
  font-size:28px; font-weight:900; font-style:normal;
  color:#ddedf7; line-height:1.2;
}
.section-titre p { font-size:11px; font-style:italic; color:rgba(255,255,255,.8); margin-top:6px; }

.jeux-grille {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.2);
  border-left:1px solid rgba(255,255,255,.2);
  margin-bottom:40px;
}
.jeu-item {
  border-right:1px solid rgba(255,255,255,.2);
  border-bottom:1px solid rgba(255,255,255,.2);
  padding:20px 16px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  transition:background .2s;
}
.jeu-item:hover { background:rgba(255,255,255,.08); }
.jeu-item img {
  height:80px; width:auto; max-width:100%;
  object-fit:contain;
  transition:transform .2s;
}
.jeu-item:hover img { transform:scale(1.05); }
.jeu-item span {
  font-size:13px; font-weight:400; color:rgba(255,255,255,.9);
  line-height:1.3;
}
.jeux-plus {
  text-align:center; font-size:22px; font-style:italic;
  font-weight:400; color:#ddedf7;
}

/* ============================================
   SECTION ACTUS (accueil)
   ============================================ */
.section-actus { background:#f5f5f5; padding:80px 0; }
.actus-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:36px; }
.actu-card {
  background:#fff; border-radius:3px; overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
  transition:transform .2s, box-shadow .2s;
  display:flex; flex-direction:column;
}
.actu-card:hover { transform:translateY(-4px); box-shadow:0 6px 20px rgba(0,0,0,.15); }
.actu-card-img { height:200px; overflow:hidden; background:var(--gris-clair); }
.actu-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.actu-card:hover .actu-card-img img { transform:scale(1.05); }
.actu-card-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.actu-card-meta { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.actu-cat {
  background:var(--bordeaux); color:#fff;
  font-size:11px; font-weight:700; padding:3px 10px;
  text-transform:uppercase; letter-spacing:.5px;
}
.actu-date { font-size:12px; color:#999; }
.actu-card-title { font-size:16px; font-weight:900; color:var(--texte); margin-bottom:10px; line-height:1.4; flex:1; }
.actu-card-title a:hover { color:var(--bordeaux-sol); }
.actu-excerpt {
  font-size:13px; color:#666; line-height:1.6; margin-bottom:14px;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.actu-lire {
  font-size:13px; font-weight:700; color:var(--bordeaux-sol);
  display:flex; align-items:center; gap:6px; transition:gap .2s;
}
.actu-lire::after { content:'→'; }
.actu-lire:hover { gap:10px; }
.actus-center { text-align:center; }

/* ============================================
   SECTION PHOTOS BAS DE PAGE
   ============================================ */
.section-photos-bas { background:#fff; padding:60px 0; }
.photos-bas-grid { display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.photos-bas-grid img { width:100%; height:380px; object-fit:cover; border-radius:3px; box-shadow:0 2px 8px rgba(0,0,0,.15); }

.section-photos-bas { background:#fff; padding:60px 0 20px; }
.photos-bas-grid { display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.photos-bas-grid img { width:100%; height:380px; object-fit:cover; border-radius:3px; box-shadow:0 2px 8px rgba(0,0,0,.15); }

.section-carte { background:#fff; padding:20px 0 60px; }
.carte-grid { display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.carte-img img { width:426px; max-width:100%; border:1px solid #000; box-shadow:0 2px 4px rgba(0,0,0,.4);object-position: top; }
.carte-logo img { height:50px; width:auto; }

/* ============================================
   ============================================ */
/* ============================================
   POPUP DESCRIPTIONS JEUX
   ============================================ */
.jeu-item { cursor:pointer; }
.jeu-item:hover span { color:#fff; text-decoration:underline; }

.jeu-popup-overlay {
  display:none; position:fixed; inset:0; z-index:9000;
  background:rgba(0,0,0,.75);
  align-items:center; justify-content:center; padding:20px;
}
.jeu-popup-overlay.open { display:flex; }
.jeu-popup-box {
  background:var(--bordeaux); color:#fff; border-radius:5px;
  padding:40px; max-width:600px; width:100%; position:relative;
  box-shadow:0 10px 40px rgba(0,0,0,.5);
  animation:popupIn .25s ease;
}
@keyframes popupIn {
  from { opacity:0; transform:scale(.95) translateY(-10px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.jeu-popup-close {
  position:absolute; top:14px; right:16px; background:none;
  border:none; color:rgba(255,255,255,.8); font-size:22px;
  cursor:pointer; line-height:1; transition:color .2s;
}
.jeu-popup-close:hover { color:#fff; }
#jeuPopupTitre { font-size:22px; font-weight:900; color:#fff; margin-bottom:16px; padding-right:30px; line-height:1.3; }
#jeuPopupDesc { font-size:14px; font-weight:300; color:rgba(255,255,255,.9); line-height:1.8; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-hero {
  background:var(--bordeaux); padding:52px 0; text-align:center;
}
.page-hero h1 { font-size:36px; font-weight:900; color:#fff; margin-bottom:6px; }
.page-hero .breadcrumb { font-size:13px; color:rgba(255,255,255,.75); }
.page-hero .breadcrumb a { color:rgba(255,255,255,.75); }
.page-hero .breadcrumb a:hover { color:#fff; }

/* ============================================
   BLOG - Liste articles
   ============================================ */
.blog-wrap { background:#f5f5f5; padding:60px 0; }
.blog-grid-wrap { display:grid; grid-template-columns:1fr 300px; gap:40px; align-items:start; }

.blog-filtres { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.filtre-btn {
  padding:7px 18px; font-size:13px; font-weight:700;
  border-radius:20px; border:2px solid var(--bordeaux-sol);
  background:transparent; color:var(--bordeaux-sol);
  cursor:pointer; font-family:'Lato',sans-serif; transition:all .2s;
}
.filtre-btn:hover,.filtre-btn.actif { background:var(--bordeaux); color:#fff; border-color:var(--bordeaux-sol); }

.articles-grille { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }

/* Sidebar */
.sidebar { display:flex; flex-direction:column; gap:24px; }
.sidebar-bloc { background:#fff; border-radius:3px; overflow:hidden; box-shadow:0 2px 6px rgba(0,0,0,.1); }
.sidebar-titre {
  background:var(--bordeaux); color:#fff;
  font-size:13px; font-weight:700; padding:12px 18px;
  text-transform:uppercase; letter-spacing:.5px;
}
.sidebar-body { padding:14px 18px; }
.sidebar-cats li { border-bottom:1px solid #eee; }
.sidebar-cats li:last-child { border:none; }
.sidebar-cats a {
  display:flex; justify-content:space-between; align-items:center;
  padding:9px 0; font-size:14px; color:var(--texte); transition:color .2s;
}
.sidebar-cats a:hover { color:var(--bordeaux-sol); }
.sidebar-cats .nb {
  background:#f0f0f0; color:var(--gris-bleu);
  font-size:11px; font-weight:700; padding:2px 8px; border-radius:10px;
}
.sidebar-recents li { border-bottom:1px solid #eee; padding:9px 0; }
.sidebar-recents li:last-child { border:none; }
.sidebar-recents a { font-size:13px; color:var(--texte); line-height:1.4; transition:color .2s; }
.sidebar-recents a:hover { color:var(--bordeaux-sol); }
.sidebar-recents .date { display:block; font-size:11px; color:#999; margin-top:3px; }

/* Pagination */
.pagination { display:flex; justify-content:center; gap:8px; margin-top:40px; }
.pagination a,.pagination span {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:3px; font-size:14px; font-weight:700;
  border:2px solid var(--bordeaux-sol); color:var(--bordeaux-sol); transition:all .2s;
}
.pagination a:hover,.pagination .current { background:var(--bordeaux); color:#fff; }

/* ============================================
   ARTICLE INDIVIDUEL
   ============================================ */
.article-wrap { background:#f5f5f5; padding:60px 0; }
.article-layout { display:grid; grid-template-columns:1fr 300px; gap:40px; align-items:start; }
.article-main { background:#fff; border-radius:3px; overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,.1); }
.article-cover { width:100%; max-height:420px; object-fit:cover; }
.article-corps { padding:40px; }
.article-meta { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:20px; }
.article-auteur { font-size:13px; color:#999; }
.article-auteur strong { color:var(--gris-bleu); }
.article-titre { font-size:28px; font-weight:900; color:var(--texte); margin-bottom:28px; line-height:1.3; }
.article-contenu { font-size:15px; line-height:1.85; color:#333; }
.article-contenu h2 { font-size:22px; font-weight:900; color:var(--gris-bleu); margin:32px 0 14px; }
.article-contenu h3 { font-size:18px; font-weight:700; color:var(--gris-bleu); margin:24px 0 10px; }
.article-contenu p { margin-bottom:18px; }
.article-contenu ul { margin:0 0 18px 22px; list-style:disc; }
.article-contenu ol { margin:0 0 18px 22px; list-style:decimal; }
.article-contenu li { margin-bottom:6px; }
.article-contenu img { max-width:100%; border-radius:3px; margin:22px 0; box-shadow:0 2px 8px rgba(0,0,0,.1); }
.article-contenu blockquote {
  border-left:4px solid var(--bordeaux-sol); background:#f8f8f8;
  padding:14px 22px; margin:22px 0; font-style:italic; color:#555;
}
.article-contenu a { color:var(--bordeaux-sol); text-decoration:underline; }
.article-nav-links {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  margin-top:32px; padding-top:24px; border-top:1px solid #eee;
}
.article-nav-link { padding:14px; background:#f8f8f8; border-radius:3px; transition:background .2s; }
.article-nav-link:hover { background:#eee; }
.article-nav-link .nav-label { font-size:11px; font-weight:700; color:var(--bordeaux-sol); text-transform:uppercase; display:block; margin-bottom:4px; }
.article-nav-link .nav-titre { font-size:13px; font-weight:700; color:var(--texte); line-height:1.3; }
.article-nav-link.suivant { text-align:right; }

/* ============================================
   PAGE À PROPOS
   ============================================ */
.apropos-wrap { background:#fff; padding:80px 0; }
.apropos-intro { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-bottom:70px; }
.apropos-img img { width:100%; border-radius:50%; filter:drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.apropos-texte h2 { font-size:28px; font-weight:900; color:var(--gris-bleu); margin-bottom:18px; }
.apropos-texte p { font-size:14px; color:#555; margin-bottom:14px; line-height:1.75; }

.activites-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:30px; }
.activite-card { background:#f8f9fa; padding:28px; border-top:4px solid var(--bordeaux-sol); }
.activite-num { font-size:52px; font-weight:900; color:#e8e8e8; line-height:1; margin-bottom:8px; }
.activite-card h3 { font-size:20px; font-weight:900; color:var(--gris-bleu); margin-bottom:12px; }
.activite-card p { font-size:14px; color:#555; line-height:1.7; }

.apropos-photos { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:60px; }
.apropos-photos img { width:100%; height:320px; object-fit:cover; border-radius:3px; box-shadow:0 2px 8px rgba(0,0,0,.15); }

/* ============================================
   PAGE GALERIE
   ============================================ */
.galerie-wrap { background:#f5f5f5; padding:60px 0; }
.galerie-grille { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.galerie-item { position:relative; overflow:hidden; border-radius:3px; aspect-ratio:1; cursor:pointer; }
.galerie-item img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.galerie-item:hover img { transform:scale(1.08); }
.galerie-overlay {
  position:absolute; inset:0; background:rgba(140,39,56,.65);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.galerie-item:hover .galerie-overlay { opacity:1; }
.galerie-overlay span { color:#fff; font-size:30px; }

/* Lightbox */
#lightbox {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,.92); align-items:center; justify-content:center; cursor:pointer;
}
#lightbox.open { display:flex; }
#lightbox img { max-width:92vw; max-height:92vh; object-fit:contain; border-radius:3px; }
#lightbox-close {
  position:absolute; top:18px; right:22px;
  background:none; border:none; color:#fff; font-size:34px; cursor:pointer; line-height:1;
}

/* ============================================
   PAGE ÉVÉNEMENTS
   ============================================ */
.evenements-wrap { background:#f5f5f5; padding:60px 0; }
.evenement-card {
  background:#fff; border-radius:3px; overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
  display:grid; grid-template-columns:110px 1fr;
  margin-bottom:20px; transition:transform .2s, box-shadow .2s;
}
.evenement-card:hover { transform:translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,.12); }
.evenement-date-bloc {
  background:var(--bordeaux); display:flex; flex-direction:column;
  align-items:center; justify-content:center; padding:20px; text-align:center;
}
.evenement-date-bloc .jour { font-size:38px; font-weight:900; color:#fff; line-height:1; }
.evenement-date-bloc .mois { font-size:13px; font-weight:700; color:rgba(255,255,255,.85); text-transform:uppercase; letter-spacing:1px; }
.evenement-body { padding:20px 26px; }
.evenement-body h3 { font-size:18px; font-weight:900; color:var(--texte); margin-bottom:8px; }
.evenement-body p { font-size:14px; color:#555; line-height:1.65; }
.evenement-lieu { font-size:13px; font-weight:700; color:var(--gris-bleu); margin-top:10px; display:flex; align-items:center; gap:6px; }

/* ============================================
   PAGE ADHÉRER
   ============================================ */
.adherer-wrap { background:#fff; padding:80px 0; }
.adherer-intro { max-width:700px; margin:0 auto 50px; text-align:center; }
.adherer-intro h2 { font-size:30px; font-weight:900; color:var(--gris-bleu); margin-bottom:16px; }
.adherer-intro p { font-size:15px; color:#555; line-height:1.75; }
.adhesion-card {
  background:#f8f9fa; padding:34px; border-top:4px solid var(--bordeaux-sol);
  border-radius:3px; max-width:500px; margin:0 auto;
}
.adhesion-card h3 { font-size:22px; font-weight:900; color:var(--gris-bleu); margin-bottom:16px; }
.adhesion-card ul li {
  font-size:14px; color:#555; padding:9px 0;
  border-bottom:1px solid #eee; display:flex; align-items:center; gap:10px;
}
.adhesion-card ul li::before { content:'✓'; color:var(--bordeaux-sol); font-weight:900; font-size:15px; }
.adhesion-card ul li:last-child { border:none; }
.adhesion-card .btn { margin-top:24px; width:100%; display:block; }

/* ============================================
   PAGE FAQ
   ============================================ */
.faq-wrap { background:#f5f5f5; padding:60px 0; }
.faq-item { background:#fff; border-radius:3px; margin-bottom:12px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,.08); }
.faq-question {
  padding:18px 22px; font-size:15px; font-weight:700; color:var(--texte);
  cursor:pointer; display:flex; justify-content:space-between; align-items:center;
  transition:background .2s;
}
.faq-question:hover { background:#f8f8f8; }
.faq-question .icone { font-size:18px; color:var(--bordeaux-sol); transition:transform .3s; }
.faq-question.open .icone { transform:rotate(45deg); }
.faq-reponse { display:none; padding:0 22px 18px; font-size:14px; color:#555; line-height:1.75; }
.faq-reponse.open { display:block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background:var(--dark); padding:20px 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.footer-copy { font-size:15px; font-weight:700; color:rgba(255,255,255,.95); }
.footer-logo img { height:38px; width:auto; opacity:.8; transition:opacity .2s; }
.footer-logo img:hover { opacity:1; }

/* ============================================
   UTILITAIRES
   ============================================ */
.text-center { text-align:center; }
.mt-30 { margin-top:30px; }
.mt-40 { margin-top:40px; }
.no-results { text-align:center; padding:60px 20px; color:#666; font-size:16px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px) {
  .blog-grid-wrap,.article-layout { grid-template-columns:1fr; }
  .sidebar { display:none; }
  .actus-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  /* Navbar */
  .navbar-links,.navbar-social { display:none; }
  .burger { display:flex; }

  /* Éviter le débordement horizontal */
  body { overflow-x:hidden; }
  .hero { overflow:hidden; }

  /* Hero */
  .hero { min-height:auto; }
  .hero-inner {
    margin:0 !important;
    padding:20px 16px 30px !important;
    width:100%;
  }
  .hero-box {
    margin-left:0 !important;
    margin-top:0 !important;
    position:static !important;
    top:auto !important;
    max-width:100%;
    padding:20px;
  }
  .hero-box h2 { font-size:22px !important; }
  .hero-box h1 { font-size:20px; }
  .hero-box p { font-size:14px !important; }

  /* Horaires haut droite → passer en dessous du hero */
  .hero > div[style*="position:absolute"] {
    position:static !important;
    background:rgba(0,0,0,0.4);
    padding:14px 16px;
    margin:0;
    width:100%;
  }

  /* Grille jeux : 2 colonnes sur mobile */
  .jeux-grille { grid-template-columns:repeat(2,1fr); }

  /* Reste */
  .rejoindre-grid,.horaires-grid,.apropos-intro,.activites-grid,.apropos-photos { grid-template-columns:1fr; gap:30px; }
  .horaires-photos { grid-template-columns:1fr 1fr; }
  .actus-grid { grid-template-columns:1fr; }
  .articles-grille { grid-template-columns:1fr; }
  .galerie-grille { grid-template-columns:repeat(2,1fr); }
  .article-corps { padding:24px; }
  .article-titre { font-size:22px; }
  .article-nav-links { grid-template-columns:1fr; }
  .page-hero h1 { font-size:26px; }
  .section-titre h2 { font-size:24px; }
  .photos-bas-grid { grid-template-columns:1fr; }
  .photos-bas-grid img { height:220px; }
  .rh-grid { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .galerie-grille { grid-template-columns:1fr 1fr; }
  .evenement-card { grid-template-columns:80px 1fr; }
  .jeux-grille { grid-template-columns:repeat(2,1fr); }
}
