/* =========================================================
   DJ SONO — CSS CLEAN (Light/Dark + Blocks A→J)
   - Header fixed + hamburger
   - Hero full (desktop sous header / mobile plein écran)
   - FX hover + apparition (C/D/E/F)
   - Galerie FULL (GIF BG + lightbox + voir plus)
   ========================================================= */

/* =========================
   0) THEME TOKENS
   ========================= */
:root{
  --bg:#ffffff;
  --bg-soft:#FFF9ED;
  --surface:#ffffff;
  --surface-2:#F4E7C5;

  --text:#0F0F12;
  --text-muted:#5E5E5E;
  --border:#E8E8E8;

  --primary:#C9A227;      /* Or */
  --primary-2:#F7C32C;    /* Accent */

  --shadow: 0 18px 60px rgba(0,0,0,.08);

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --container: 1180px;
  --topbarH: 72px; /* header height */
}

html[data-theme="dark"]{
  --bg:#0B0C10;
  --bg-soft:#0F1117;
  --surface:#12141B;
  --surface-2:#191C24;

  --text:#F2F2F2;
  --text-muted:#B8B8B8;
  --border: rgba(255,255,255,.12);

  --primary:#D3B04A;
  --primary-2:#F7C32C;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

/* =========================
   1) BASE
   ========================= */
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
section[id]{scroll-margin-top: 88px;}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
  padding-top: var(--topbarH); /* compense header fixed */
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--container);margin:0 auto;padding:0 18px}



/* fond "pourcent" (organisation) */
.bg-org-soft{
  background: var(--bg-soft, #f7f1e3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
html[data-theme="dark"] .bg-org-soft{
  background: rgba(255,255,255,.06); /* comme organisation.css */
}

/* élément qui "débloque" la largeur (full viewport) */
.full-bleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 18px;
  padding-right: 18px;

}

/* =========================
   2) UI ELEMENTS
   ========================= */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:11px 14px;border-radius:999px;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  font-weight:650;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, filter .15s ease;
  user-select:none;
}
.btn:active{transform:scale(.98)}
.btn--primary{background:var(--primary);border-color:transparent;color:#1b1406;}
.btn--ghost{background:rgba(0,0,0,.02);}
html[data-theme="dark"] .btn--ghost{background:rgba(255,255,255,.06)}

@media (hover:hover) and (pointer:fine){
  .btn:hover{
    transform: translateY(-1px);
    border-color: rgba(201,162,39,.28);
    background: rgba(201,162,39,.06);
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
  }
  html[data-theme="dark"] .btn:hover{
    border-color: rgba(247,195,44,.22);
    background: rgba(247,195,44,.08);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }
  .btn--primary:hover{ filter: brightness(1.03); }
}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.02);
  font-size:12px;color:var(--text-muted);
}
html[data-theme="dark"] .pill{background:rgba(255,255,255,.06)}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.shadow{box-shadow:var(--shadow)}

.section-title{
  text-align:center;
  margin:42px 0 16px;
  font-size:24px;
  letter-spacing:-.2px;
}
.section-sub{
  text-align:center;
  margin:-8px 0 22px;
  color:var(--text-muted);
  font-size:14px;
}

/* =========================================================
   A — HEADER (fixed + blur)
   ========================================================= */
.blk-a{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.65);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
}
html[data-theme="dark"] .blk-a{
  background: rgba(11,12,16,.55);
}

.nav{display:flex;align-items:center;justify-content:space-between;height:var(--topbarH);gap:12px}
.brand{display:flex;align-items:center;gap:12px;min-width:200px;}
.brand img{height:36px;width:auto}
.brand-title{font-weight:800;letter-spacing:.2px}

.nav-links{
  display:flex;gap:18px;align-items:center;
  font-weight:650;color:var(--text-muted);
}
.nav-links a:hover{color:var(--text)}

.nav-actions{
  display:flex;gap:10px;align-items:center;
  min-width:240px;justify-content:flex-end;
}
.icon-btn{
  width:42px;height:42px;border-radius:999px;border:1px solid var(--border);
  background:transparent;display:inline-grid;place-items:center;cursor:pointer;
}

/* Hamburger */
.hamburger{
  display:none;width:46px;height:42px;border-radius:999px;border:1px solid var(--border);
  background:transparent;cursor:pointer;position:relative;
}
.hamburger span{
  position:absolute;left:12px;right:12px;height:2px;background:var(--text);
}
.hamburger span:nth-child(1){top:14px}
.hamburger span:nth-child(2){top:20px}
.hamburger span:nth-child(3){top:26px}

/* Drawer mobile */
.mobile-drawer{
  display:none;
  border-top:1px solid var(--border);
  background:var(--bg);
}
.mobile-drawer .inner{
  padding:12px 0 18px;
  display:grid;gap:10px;
}
.mobile-drawer a{
  padding:12px 12px;border-radius:12px;
  border:1px solid var(--border);
  color:var(--text);
}

@media (max-width:980px){
  .nav-links{display:none}
  .hamburger{display:inline-block}
}

/* =========================================================
   B — HERO (stable)
   ========================================================= */
.blk-b{padding:0;margin:0}

/* Desktop: sous header. Mobile: plein écran */
.hero{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--topbarH));
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay lisible */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.10) 100%
  );
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 24px;
}

.hero-inner{ max-width: 680px; }

.hero h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.6px;
}
.hero h1 em{font-style: normal;color: var(--primary);}

.hero p{
  margin: 0 0 18px;
  font-size: 1rem;
  color: rgba(255,255,255,.92);
  max-width: 60ch;
}
.hero-ctas{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.hero-pills{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

@media (max-width:980px){
  .hero{
    height: 100vh;
    min-height: 620px;
  }
  .hero-overlay{
    background: linear-gradient(to bottom, rgba(0,0,0,.60), rgba(0,0,0,.25));
  }
  .hero-content{padding:18px}
}

/* =========================================================
   C — PRESTATIONS / SERVICES
   ========================================================= */
.blk-c{padding:10px 0 12px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media (max-width:980px){.grid-3{grid-template-columns:1fr}}
.svc-card{padding:16px}
.svc-head{display:flex;align-items:center;justify-content:space-between;gap:10px}
.svc-name{font-weight:850}
.badge{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  font-size:12px;font-weight:750;
  background:rgba(201,162,39,.16);
  border:1px solid rgba(201,162,39,.35);
}
.badge--org{background:rgba(244,114,42,.14);border-color:rgba(244,114,42,.28)}
.badge--green{background:rgba(84,216,37,.14);border-color:rgba(84,216,37,.28)}
.badge--red{background:rgba(219,32,27,.12);border-color:rgba(219,32,27,.24)}
.svc-desc{margin:10px 0 14px;color:var(--text-muted);font-size:14px}
.svc-foot{display:flex;justify-content:space-between;align-items:center;gap:10px}
.link{
  font-weight:750;padding:8px 10px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.02);
}
html[data-theme="dark"] .link{background:rgba(255,255,255,.06)}

/* =========================================================
   D — AMBIANCES (fix images)
   ========================================================= */

.blk-d{ padding: 10px 0 16px; }

.moods{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
@media (max-width:980px){ .moods{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .moods{ grid-template-columns:1fr; } }

.mood{
  overflow:hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.mood .ph{
  height:160px;
  display:block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* fallback si image absente */
  background-image: linear-gradient(120deg, rgba(201,162,39,.20), rgba(244,231,197,.10));
}

/* FULL largeur sur index UNIQUEMENT (optionnel) */
.page-index .moods--full{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 18px;
  padding-right: 18px;
}

/* Images par ambiance */
.mood-chic   .ph{ background-image: url("/assets/images/ambiance-chic.jpg"); }
.mood-festif .ph{ background-image: url("/assets/images/ambiance-festif.jpg"); }
.mood-club   .ph{ background-image: url("/assets/images/ambiance-club.jpg"); }
.mood-vintage.ph{ background-image: url("/assets/images/ambiance-club.jpg"); }
.mood-vintage .ph{ background-image: url("/assets/images/ambiance-vintage.jpg"); }

}


/* =========================================================
   MICRO-ANIMATIONS (Services -> Karaoké)
   C/D/E/F uniquement — pas Galerie/Preuves/FAQ/Contact
   Dépend du JS qui ajoute .fx-card + .fx-in
   ========================================================= */
.fx-card{
  position: relative;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  will-change: transform;
}

/* Hover (fallback universal) */
.fx-card:hover{
  transform: translateY(-4px);
  background: rgba(201,162,39,.06);
  border-color: rgba(201,162,39,.28);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
html[data-theme="dark"] .fx-card:hover{
  background: rgba(247,195,44,.08);
  border-color: rgba(247,195,44,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* Apparition */
.fx-in{ opacity: 0; transform: translateY(8px); }
.fx-in.is-in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

/* Réduction motion */
@media (prefers-reduced-motion: reduce){
  .fx-card, .fx-in{ transition:none !important; transform:none !important; }
  .fx-in{ opacity:1 !important; }
}


/* =========================================================
   G — GALERIE FULL — FOND OR (FULL SCREEN)
   ========================================================= */

.blk-gal{
  position: relative;
  padding: clamp(28px, 4vw, 54px) 0;
  margin: 0;
  min-height: 100vh;
  isolation: isolate;

  /* FOND OR */
  background:
    radial-gradient(
      1200px 600px at 15% 10%,
      rgba(255,215,120,.55),
      transparent 50%
    ),
    radial-gradient(
      1000px 500px at 85% 70%,
      rgba(201,162,39,.45),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #FFF4D6 0%,
      #F4E2A4 40%,
      #E1C46A 100%
    );
}

/* mode sombre : or plus profond */
html[data-theme="dark"] .blk-gal{
  background:
    radial-gradient(
      1200px 600px at 15% 10%,
      rgba(255,210,120,.28),
      transparent 50%
    ),
    radial-gradient(
      1000px 500px at 85% 70%,
      rgba(201,162,39,.22),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #2B220A 0%,
      #3A2F0F 40%,
      #1A1406 100%
    );
}


html[data-theme="dark"] .gal-hint{ background: rgba(0,0,0,.22); }

.gal-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}


.gal-item{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  display:block;
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}
html[data-theme="dark"] .gal-item{ background: rgba(0,0,0,.22); }
@media (hover:hover) and (pointer:fine){
  .gal-item:hover{ transform: translateY(-2px); }
}
.gal-item img{ width:100%; height:100%; object-fit: cover; display:block; }

/* Layout vitrine desktop (6) */
#galGrid .gal-item:nth-child(1){ grid-column: span 6; grid-row: span 2; min-height: 360px; }
#galGrid .gal-item:nth-child(2){ grid-column: span 6; grid-row: span 1; min-height: 170px; }
#galGrid .gal-item:nth-child(3){ grid-column: span 3; grid-row: span 1; min-height: 170px; }
#galGrid .gal-item:nth-child(4){ grid-column: span 3; grid-row: span 1; min-height: 170px; }
#galGrid .gal-item:nth-child(5){ grid-column: span 6; grid-row: span 1; min-height: 220px; }
#galGrid .gal-item:nth-child(6){ grid-column: span 6; grid-row: span 1; min-height: 220px; }

/* Mobile vitrine */
@media (max-width:980px){
  #galGrid{ grid-template-columns: 1fr; }
  #galGrid .gal-item{ min-height: 240px !important; grid-column:auto; grid-row:auto; }
}

/* Voir plus / Voir moins */
.gal-more-wrap{ margin-top: 22px; text-align:center; }

/* bouton plus visible */
#galToggle{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #1b1406;
  border: 0;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
@media (hover:hover) and (pointer:fine){
  #galToggle:hover{
    filter: brightness(1.05);
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
  }
}

/* galerie étendue animée */
.gal-more{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height .45s ease, opacity .35s ease, transform .35s ease;
}
.gal-more.is-open{
  max-height: 8000px;
  opacity: 1;
  transform: translateY(0);
}

/* grid étendu */
.gal-grid--more{
  margin-top: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width:980px){ .gal-grid--more{ grid-template-columns: 1fr 1fr; } }
@media (max-width:520px){ .gal-grid--more{ grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 9999;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
  padding: 18px;
}
.lightbox.is-open{ display: grid; }

.lightbox-img{
  max-width: min(1100px, 95vw);
  max-height: 88vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.lightbox-close{
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display:grid;
  place-items:center;
}

.lightbox-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10000;
  transition: transform .15s ease, background .15s ease;
}
@media (hover:hover) and (pointer:fine){
  .lightbox-nav:hover{
    background: rgba(0,0,0,.65);
    transform: translateY(-50%) scale(1.05);
  }
}
.lightbox-nav.prev{ left: 18px; }
.lightbox-nav.next{ right: 18px; }

@media (max-width:980px){
  .lightbox-nav{ width: 44px; height: 44px; font-size: 28px; }
}

/* =========================================================
   H — PREUVES
   ========================================================= */
.blk-h{padding:10px 0 16px}
.proofs{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:980px){.proofs{grid-template-columns:1fr}}
.proof{padding:16px}
.kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:12px}
@media (max-width:520px){.kpis{grid-template-columns:1fr}}
.kpi{
  padding:12px;border-radius:16px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.02)
}
html[data-theme="dark"] .kpi{background:rgba(255,255,255,.06)}
.kpi b{font-size:18px}


/* =========================================================
   I — FAQ
   ========================================================= */
.blk-i{padding:10px 0 16px}
details{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 14px;
  background:var(--surface);
}
details + details{margin-top:10px}
summary{cursor:pointer;font-weight:800}
details p{margin:10px 0 0;color:var(--text-muted)}


/* =========================================================
   FOOTER
   ========================================================= */
.footer{padding:22px 0;border-top:1px solid var(--border);margin-top:10px}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

/* =========================================================
   FAQ — Hover effect (même esprit que Ambiances)
   ========================================================= */

.blk-i details{
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:12px 14px;
  background:var(--surface);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

/* espacement */
.blk-i details + details{
  margin-top:10px;
}

/* SURVOLE */
@media (hover:hover) and (pointer:fine){
  .blk-i details:hover{
    transform: translateY(-3px);
    background: rgba(201,162,39,.06); /* même teinte que Ambiances */
    border-color: rgba(201,162,39,.35);
    box-shadow: 0 18px 60px rgba(0,0,0,.10);
  }

  html[data-theme="dark"] .blk-i details:hover{
    background: rgba(247,195,44,.08);
    border-color: rgba(247,195,44,.22);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
  }
}

/* QUESTION */
.blk-i summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}

/* enlève le triangle par défaut */
.blk-i summary::-webkit-details-marker{
  display:none;
}

/* RÉPONSE */
.blk-i details p{
  margin:10px 0 0;
  color:var(--text-muted);
  font-size:14px;
}

/* QUESTION OUVERTE = même style que hover */
.blk-i details[open]{
  background: rgba(201,162,39,.06);
  border-color: rgba(201,162,39,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}

html[data-theme="dark"] .blk-i details[open]{
  background: rgba(247,195,44,.08);
  border-color: rgba(247,195,44,.22);
}

/* =========================================================
   WHERE-IS — À propos (GIF EN FOND DU <section>)
   ========================================================= */

/* 1) Variable GIF (une seule fois) */
:root{
  --galGif: url("/assets/images/bg-dj-soiree.gif");
}

/* 2) Fond sur le bloc (pas sur .where-bg) */
.blk-where{
  position: relative;
  min-height: auto;        /* supprime le grand vide */
  padding: 36px 0 24px;    /* compact */
  margin: 0;
  overflow: hidden;
  isolation: isolate;

  background:
    linear-gradient(180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 50%,
      rgba(0,0,0,.55) 100%
    ),
    var(--galGif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 3) Si tu avais un voile qui “blanchit” : on le coupe */
.blk-where::after{ content: none; }

/* 4) Le reste (tes styles actuels) */
.where-wrap{ position: relative; z-index:1; }

.where-title{
  text-align:center;
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing:-.3px;
}
.where-sub{
  text-align:center;
  margin: 0 0 22px;
  color: var(--text-muted);
}

.where-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}
@media (max-width: 980px){
  .where-grid{ grid-template-columns: 1fr; }
}

.where-card{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 980px){
  .where-card{ grid-template-columns: 1fr; }
}

.where-card--right{ grid-template-columns: 1fr 260px; }
@media (max-width: 980px){
  .where-card--right{ grid-template-columns: 1fr; }
}

.where-photo{
  width: 260px;
  height: 260px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.25);
}
.where-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.where-text{
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.70);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
html[data-theme="dark"] .where-text{ background: rgba(0,0,0,.28); }

.where-name{ font-weight: 900; font-size: 18px; margin-bottom: 2px; }
.where-role{ color: var(--text-muted); font-weight: 700; margin-bottom: 10px; }
.where-desc{ margin: 0 0 12px; color: var(--text); }
.where-mini{ display:flex; gap:10px; flex-wrap:wrap; }

@media (hover:hover) and (pointer:fine){
  .where-text:hover{
    transform: translateY(-3px);
    border-color: rgba(201,162,39,.35);
    box-shadow: 0 18px 60px rgba(0,0,0,.10);
  }
}

/* =========================================================
   WHERE-IS TBC — bloc texte + grande photo (style capture)
   FIX: padding réduit pour éviter d’ajouter du vide
   ========================================================= */

.blk-where2{
  padding: 24px 0 34px;   /* ✅ au lieu de clamp(...) */
  background: var(--bg);
}

.where2-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px){
  .where2-grid{ grid-template-columns: 1fr; }
}

/* PHOTO gauche */
.where2-photo{
  margin:0;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.where2-photo img{
  width:100%;
  height:auto;
  display:block;
}

/* TEXTE bas gauche */
.where2-note{
  margin-top: 14px;       /* ⬅️ un peu moins */
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}
.where2-note p{ margin:0; }

/* Colonne droite : style "italique propre" */
.where2-right{ padding-top: 6px; }
.where2-item + .where2-item{ margin-top: 22px; } /* ⬅️ un peu moins */

.where2-h{
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.where2-p{
  margin:0;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.85;
}

/* confort lecture sombre */
html[data-theme="dark"] .blk-where2{
  background: var(--bg);
}


.footer-socials{
  display:flex;
  justify-content:center;   /* CENTRÉ */
  align-items:center;
  gap:16px;                 /* côte à côte */
  margin-top:16px;
}

.footer-socials a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(201,162,39,.45);
  background:rgba(0,0,0,.35);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-socials svg{
  width:20px;
  height:20px;
  fill:#c9a227; /* or */
}

.footer-socials a:hover{
  transform:translateY(-2px);
  background:rgba(201,162,39,.18);
  border-color:#c9a227;
}


.footer{
  background:#0e0e0e;
  color:#ddd;
  padding:40px 0 20px;
}

.footer .container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}

.footer-title{
  font-weight:700;
  margin-bottom:10px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#ccc;
  text-decoration:none;
  transition:.2s ease;
}

.footer-links a:hover{
  color:#c9a227;
}

.footer-copy{
  text-align:center;
  margin-top:30px;
  font-size:13px;
  opacity:.7;
}


/* =========================
   Footer socials (centrés)
   ========================= */
.footer-socials{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-top:16px;
}

.footer-socials a{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(201,162,39,.45);
  background:rgba(0,0,0,.35);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-socials svg{
  width:22px;
  height:22px;
  fill:#c9a227;
}

.footer-socials a:hover{
  transform:translateY(-2px);
  background:rgba(201,162,39,.18);
  border-color:#c9a227;
}


/* =========================
   Chatbot — bas droite (gros)
   ========================= */
#chatbot{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  font-family:inherit;
}

/* bouton flottant */
#chatbot-toggle{
  width:68px;
  height:68px;
  border-radius:999px;
  border:1px solid rgba(201,162,39,.55);
  background:#c9a227;
  color:#120e06;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* fenêtre */
#chatbot-box{
  width:min(420px, calc(100vw - 44px));
  max-height:520px;
  margin-bottom:12px;
  background:rgba(10,10,12,.95);
  color:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(201,162,39,.28);
  box-shadow:0 26px 70px rgba(0,0,0,.55);

  display:none;            /* ✅ ici */
  flex-direction:column;
}

#chatbot-box.is-open{
  display:flex;            /* ✅ ici */
}

/* header */
.chatbot-header{
  background:rgba(0,0,0,.55);
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.chatbot-title{
  font-weight:900;
  letter-spacing:.2px;
}

#chatbot-close{
  background:transparent;
  border:none;
  color:#fff;
  cursor:pointer;
  font-size:18px;
}

/* messages */
#chatbot-messages{
  flex:1;
  padding:12px 12px 10px;
  overflow-y:auto;
  font-size:14px;
  line-height:1.55;
}

.chat-msg{ margin:0 0 10px; }
.chat-bot{ color:#c9a227; }
.chat-user{ color:#fff; }

/* form */
#chatbot-form{
  display:flex;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.55);
}

#chatbot-input{
  flex:1;
  padding:12px 12px;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
}

#chatbot-form button{
  padding:0 16px;
  background:#c9a227;
  border:none;
  cursor:pointer;
  font-weight:900;
  color:#120e06;
}

/* mobile */
@media (max-width:520px){
  #chatbot{ right:14px; bottom:14px; }
  #chatbot-toggle{ width:62px; height:62px; font-size:24px; }
}


/* =========================
   HUB — Zones (page dédiée)
   ========================= */
.hub-head{ padding: 26px 0 10px; }
.hub-title{ margin: 10px 0 10px; font-size: clamp(26px, 3.2vw, 42px); letter-spacing: -.4px; }
.hub-sub{ margin: 0 0 14px; color: var(--text-muted); max-width: 80ch; }
.hub-grid{ margin-top: 16px; }
.hub-card{ padding: 16px; }

}

.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#111;
  color:#fff;
  padding:14px 20px;
  display:none;
  z-index:9999;
  box-shadow:0 -5px 20px rgba(0,0,0,.4);
}

.cookie-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.cookie-actions button{
  background:#c9a227;
  border:none;
  padding:8px 14px;
  cursor:pointer;
  font-weight:600;
}

.cookie-actions button:last-child{
  background:#444;
  color:#fff;
}

/* ================================
   ZONES — pas de fond noir sur le hero
   (uniquement pages avec body.page-zone)
   ================================ */
body.page-zone .hero{
  background: transparent !important;
  min-height: auto !important;
  height: auto !important;
}
.header-zone{
  background: transparent;
}

/* =======================================
   HEADER MOBILE CLEAN
   ======================================= */

@media (max-width: 768px){

  /* réduit la hauteur */
  :root{
    --topbarH: 60px;
  }

  .nav{
    height: var(--topbarH);
  }

  /* cache les gros boutons */
  .nav-actions .btn{
    display: none;
  }

  /* réduit le bouton toggle thème */
  .icon-btn{
    width:36px;
    height:36px;
  }

  /* garde uniquement hamburger + toggle */
  .nav-actions{
    min-width: auto;
    gap:8px;
  }

  /* logo plus compact */
  .brand img{
    height:28px;
  }



