/* ===========================================================
   WIDESCREEN PRODUCTION — feuille de style moderne (sans serveur)
   Reconstruction propre du site Adobe Muse. Un seul fichier CSS.
   Couleur d'accent historique : #6666FF
   =========================================================== */

:root {
  /* Police du site d'origine (Adobe Muse) */
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  /* Couleurs de texte du site d'origine : noir #000 + accent #6666FF */
  --text: #000000;
  --accent: #6666ff;
  --accent-dark: #4747d1;
  --ink: #000000;
  --muted: #000000;
  --line: #e6e6e6;
  --bg: #ffffff;
  --max: 1180px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- En-tête / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 146px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 126px; width: auto; }           /* logo 300% (42 -> 126) */
.brand b { font-size: 1.26rem; letter-spacing: .04em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 12px 17px;
  font-size: .98rem;                                 /* menu +20% (.82 -> .98) */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active { color: var(--accent); background: #f1f1ff; }

.lang { display: flex; align-items: center; gap: 8px; margin-left: 12px; padding-left: 16px; border-left: 1px solid var(--line); }
.lang a { display: inline-flex; opacity: .55; transition: opacity .2s; }
.lang a:hover, .lang a.active { opacity: 1; }
.lang img { width: 27px; height: 18px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

/* mobile burger */
.burger {
  display: none; margin-left: auto; border: 0; cursor: pointer; padding: 0;
  width: 30px; height: 22px;
  background:
    linear-gradient(#000,#000) center top/100% 3px no-repeat,
    linear-gradient(#000,#000) center center/100% 3px no-repeat,
    linear-gradient(#000,#000) center bottom/100% 3px no-repeat;
}

/* ---------- Héros (comme le site d'origine : logo noir + texte noir) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #000;
  text-align: center;
  min-height: clamp(440px, 64vh, 660px);
  display: flex;
  background: #cfcfcf;
}
/* Diaporama 3 images (comme le site d'origine) */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; animation: heroFade 18s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
/* voile blanc très léger pour garder le texte noir lisible sur les 3 images */
.hero-slides::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.22)); }
.hero-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: clamp(26px,4.5vw,52px) 20px clamp(34px,6vw,72px); }
.hero-logo { display: block; width: clamp(220px, 36vw, 430px); height: auto; margin: 0 auto; filter: drop-shadow(0 2px 8px rgba(255,255,255,.6)); }
/* le bloc se cale sur la largeur de "WIDESCREEN PRODUCTION" (le plus large) */
.hero-titles { width: fit-content; max-width: 100%; margin: 0 auto; }
@keyframes heroFade {
  0% { opacity: 0; } 4% { opacity: 1; } 30% { opacity: 1; } 36% { opacity: 0; } 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 1; }
  .hero-slide:nth-child(2), .hero-slide:nth-child(3) { opacity: 0; }
}
.hero h1 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;                 /* "WIDESCREEN PRODUCTION" reste sur 1 ligne et fixe la largeur */
  text-shadow: 0 1px 10px rgba(255,255,255,.75);
}
/* tagline : taille juste en dessous de "WIDESCREEN PRODUCTION", même mise à l'échelle responsive */
.hero .hero-tag {
  margin: 0;
  font-size: clamp(1rem, 2.7vw, 1.9rem);   /* h1 = clamp(1.5rem,4vw,2.8rem) -> celle-ci juste en dessous */
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(255,255,255,.75);
}
/* Bande VOD / DVD sous l'image — en gras, plus grande */
.vod-band { background: #fff; text-align: center; padding: clamp(18px,3vw,30px) 20px; }
.vod-band p { margin: 0; font-size: clamp(1.15rem, 2.7vw, 1.7rem); font-weight: 700; color: #000; line-height: 1.35; }
/* moins d'espace entre la bande VOD/DVD et la 1re section de documentaires */
.vod-band + .section { padding-top: clamp(22px, 3vw, 38px); }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(102,102,255,.4); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 8vw, 90px) 0; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto clamp(36px, 5vw, 56px); }
/* "Feature/Short documentaries" : même rendu que "WIDESCREEN PRODUCTION" (graisse 700, espacement, tout noir) */
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin: 0 0 10px; font-weight: 700; letter-spacing: .04em; }
.section-head h2 span { color: inherit; }
/* touche design : filet bleu centré sous le titre de section */
.section-head h2::after { content: ""; display: block; width: 64px; height: 4px; background: var(--accent); border-radius: 2px; margin: 16px auto 0; }
.section-head p { color: var(--muted); margin: 0; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.eyebrow-lg { font-size: 1.05rem; }
.eyebrow-name { color: var(--accent); font-size: 1em; letter-spacing: .04em; }
.museum-head-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.museum-head-row .eyebrow { margin-bottom: 0; }
.back-link { color: var(--accent); font-weight: 700; white-space: nowrap; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

.alt-bg { background: #fafaff; }

/* ---------- Grille de documentaires ---------- */
.grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .thumb { aspect-ratio: 150 / 213; overflow: hidden; background: #f3f3f6; }
.card .thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin: 0 0 2px; font-size: 1.12rem; }
.card .card-sub { font-size: .92rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; }  /* suite du titre, en noir */
.card .meta { font-size: .8rem; color: var(--accent); font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.card p { margin: 0 0 16px; font-size: .92rem; color: var(--muted); flex: 1; }
.card .more { font-weight: 700; font-size: .85rem; color: var(--accent); }
.card .more::after { content: " →"; }

/* ---------- Pied de page ---------- */
.site-footer { background: #111; color: #bbb; padding: 56px 0 32px; font-size: .9rem; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.4fr 1fr 1fr; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.8; }
.socials { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.socials img { height: 22px; width: auto; filter: grayscale(1) brightness(2.2); opacity: .8; transition: .2s; }
.socials a:hover img { opacity: 1; filter: none; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid #2a2a2a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #777; font-size: .82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .brand { display: none; }          /* pas de logo dans le menu sur smartphone */
  .site-header .container { min-height: 64px; position: relative; }
  .nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px; margin: 0;
    transform: translateY(-130%); transition: transform .3s; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 8px; }
  /* drapeaux à gauche, bouton menu épinglé à droite (les deux visibles, sans logo) */
  .lang { margin-left: 0; padding-left: 0; border-left: 0; }
  .burger { display: block; margin-left: auto; }
  /* en mobile : titre et tagline peuvent revenir à la ligne (taille gérée par les clamp) */
  .hero h1 { white-space: normal; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Pages intérieures ===== */
.page-hero { background: #111; color: #fff; padding: clamp(13px,2.1vw,24px) 0; }
.page-hero .container { max-width: 900px; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin: 6px 0 0; font-weight: 800; }
.page-hero p.lead { margin: 14px 0 0; font-size: 1.15rem; opacity: .85; max-width: 640px; }

.prose { max-width: 760px; margin-inline: auto; font-size: 1.05rem; }
.prose p { margin: 0 0 1.2em; }
.prose h2 { font-size: 1.6rem; margin: 1.8em 0 .6em; }
.prose h2 span { color: var(--accent); }

.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; max-width: 980px; margin-inline: auto; }
.about-grid .portrait { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 96px; }
.quote { border-left: 4px solid var(--accent); background: #fafaff; padding: 26px 30px; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: #444; font-size: 1.3rem; line-height: 1.6; }
.quote cite { display: block; margin-top: 14px; font-style: normal; font-weight: 700; color: var(--accent); font-size: 1.28rem; }
.callout { text-align: center; font-size: 1.6rem; font-weight: 700; line-height: 1.3; max-width: 720px; margin: 0 auto; }
.callout span { color: var(--accent); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; max-width: 980px; margin-inline: auto; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font: inherit; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.info-block { font-size: 1.05rem; line-height: 1.9; }
.info-block strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }

@media (max-width: 760px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid .portrait { position: static; max-width: 280px; }
}

/* ===== Page documentaire (détail) ===== */
.doc-top { display: grid; grid-template-columns: 300px 1fr; gap: 44px; max-width: 1000px; margin: 0 auto; align-items: start; }
.doc-poster img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.doc-info h1 { font-size: clamp(1.8rem,4vw,2.6rem); margin: 0 0 6px; font-weight: 800; line-height: 1.15; }
.h1-sub { font-weight: 400; font-style: italic; color: var(--muted); font-size: .62em; }
.doc-info .meta { color: var(--accent); font-weight: 700; letter-spacing: .04em; margin-bottom: 20px; }
.watch-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 8px; }
.link-list { max-width: 760px; margin: 0 auto; }
.link-list a { display: flex; align-items: center; gap: 10px; padding: 13px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; transition: color .2s, padding .2s; }
.link-list a::before { content: "↗"; color: var(--accent); font-weight: 700; }
.link-list a:hover { color: var(--accent); padding-left: 10px; }
@media (max-width: 760px) { .doc-top { grid-template-columns: 1fr; } .doc-poster { max-width: 240px; } }

/* ===== Footer (e-mail + réseaux + partenaires) ===== */
.site-footer-min { background: #111; color: #bbb; text-align: center; padding: 44px 20px 36px; }
.site-footer-min .footer-mail { color: #fff; font-size: 1.15rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; display: inline-block; margin-bottom: 24px; }
.site-footer-min .footer-mail:hover { color: var(--accent); }
.footer-social { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center; margin-bottom: 22px; }
.footer-social img { height: 28px; width: auto; transition: transform .2s; }
.footer-social a:hover img { transform: translateY(-2px); }
.footer-partners { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.footer-partners img { height: 36px; width: auto; background: #fff; padding: 5px 9px; border-radius: 5px; transition: transform .2s; }
.footer-partners a:hover img { transform: translateY(-2px); }

/* ===== Galeries photo (albums) ===== */
.gallery { columns: 4 240px; column-gap: 14px; }
.gallery a { display: block; margin: 0 0 14px; break-inside: avoid; border-radius: 8px; overflow: hidden; cursor: zoom-in; background: #f3f3f6; }
.gallery img { width: 100%; height: auto; display: block; transition: transform .35s, opacity .3s; }
.gallery a:hover img { transform: scale(1.04); }
.album-cards { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.album-cards a { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; aspect-ratio: 4/3; }
.album-cards img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.album-cards a:hover img { transform: scale(1.06); }
.album-cards .label { position: absolute; inset: auto 0 0 0; padding: 26px 18px 16px; color: #fff; font-weight: 800; font-size: 1.25rem; background: linear-gradient(transparent, rgba(0,0,0,.75)); }
/* Lightbox */
#lb { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; z-index: 1000; cursor: zoom-out; padding: 20px; }
#lb.open { display: flex; }
#lb img { max-width: 96vw; max-height: 92vh; border-radius: 6px; box-shadow: 0 10px 60px rgba(0,0,0,.6); }
#lb .x { position: fixed; top: 18px; right: 26px; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }

/* ===== Page commande DVD ===== */
.dvd-top { display: grid; grid-template-columns: 300px 1fr; gap: 44px; max-width: 1000px; margin: 0 auto; align-items: start; }
.dvd-info h1 { font-size: clamp(1.5rem,3.4vw,2.3rem); margin: 0 0 6px; font-weight: 700; letter-spacing: .04em; }
.dvd-price { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; letter-spacing: .02em; padding: 7px 16px; border-radius: 50px; margin: 6px 0 14px; }
.dvd-form { margin-top: 10px; max-width: 520px; }
.dvd-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dvd-form .g-recaptcha { margin: 16px 0; }
@media (max-width: 760px) { .dvd-top { grid-template-columns: 1fr; } .dvd-top .doc-poster { max-width: 240px; } }

/* ===== Page More info (reprise du contenu d'origine) ===== */
.info-block { max-width: 820px; margin: 40px auto 0; }
.info-block h2 { font-size: 1.7rem; font-weight: 700; letter-spacing: .04em; margin: 0 0 16px; }
.fest-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.fest-row img { height: 64px; width: auto; }
.fest-label { font-weight: 700; letter-spacing: .04em; margin-bottom: 12px; display: block; color: var(--muted); }
.watch-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* ===== Diaporama bandeau (pages More info) ===== */
.info-slideshow { position: relative; height: clamp(300px, 42vw, 560px); overflow: hidden; background: #000; }
.info-slideshow-lg { height: clamp(396px, 55vw, 740px); }   /* +20% puis +10% (page Rodolphe) */
.info-slideshow .iss { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.info-slideshow .iss.active { opacity: 1; }

/* ===== Vidéo / trailer (pages More info) ===== */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== More info / Museum : titres de section + bouton ghost accent ===== */
.info-h2 { font-size: 1.7rem; font-weight: 700; letter-spacing: .04em; margin: 0 0 16px; }
.btn-ghost.ghost-accent { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ghost.ghost-accent:hover { background: var(--accent); color: #fff; }

/* ===== News / presse (logos -> PDF) ===== */
.news-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.news-row img { height: 48px; width: auto; max-width: 170px; object-fit: contain; background: #fff; padding: 5px 9px; border-radius: 5px; box-shadow: 0 0 0 1px var(--line); transition: transform .2s; }
.news-row a:hover img { transform: translateY(-2px); }

/* ===== Musée : grille de vignettes -> diaporamas ===== */
/* Diaporama contrôlable : photo aussi GRANDE que possible, MINIMUM de noir autour */
.slideshow { position: relative; margin: 18px 0 6px; outline: none; }
.ss-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; max-height: 86vh; }
.ss-cap { margin: 10px auto 0; max-width: 720px; text-align: center; color: var(--accent); font-size: .85rem; line-height: 1.4; }
.ss-img { max-width: 100%; max-height: 86vh; width: auto; height: auto; display: block; border-radius: 4px; }
.ss-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; border: none; background: transparent; color: #000; font-size: 2.6rem; line-height: 1; width: 50px; height: 70px; cursor: pointer; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: color .2s; text-shadow: 0 1px 4px rgba(255,255,255,.85); }
.ss-nav:hover { color: var(--accent); }
/* En plein écran : flèches blanches sur fond sombre (lisibilité sur noir) */
.slideshow:fullscreen .ss-nav, .slideshow:-webkit-full-screen .ss-nav { background: rgba(0,0,0,.45); color: #fff; text-shadow: none; transition: background .2s; }
.slideshow:fullscreen .ss-nav:hover, .slideshow:-webkit-full-screen .ss-nav:hover { background: rgba(0,0,0,.8); color: #fff; }
.ss-prev { left: 12px; } .ss-next { right: 12px; }
.ss-play { position: absolute; bottom: 12px; left: 14px; z-index: 2; border: none; background: transparent; color: #000; width: 34px; height: 34px; cursor: pointer; font-size: .95rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: color .2s; text-shadow: 0 1px 4px rgba(255,255,255,.85); }
.ss-play:hover { color: var(--accent); }
.ss-count { position: absolute; bottom: 12px; right: 14px; color: #000; font-size: .9rem; font-weight: 700; letter-spacing: .03em; text-shadow: 0 1px 4px rgba(255,255,255,.85); }
.ss-full { position: absolute; top: 12px; right: 14px; z-index: 2; border: none; background: transparent; color: #000; width: 38px; height: 38px; cursor: pointer; font-size: 1.25rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: color .2s; text-shadow: 0 1px 4px rgba(255,255,255,.85); }
.ss-full:hover { color: var(--accent); }
@media (max-width: 640px) { .ss-nav { width: 40px; height: 56px; font-size: 1.7rem; } }

/* Plein écran : le diaporama remplit l'écran, navigation + bouton retour visibles */
.slideshow:fullscreen { background: #000; display: flex; align-items: center; justify-content: center; padding: 0; }
.slideshow:-webkit-full-screen { background: #000; display: flex; align-items: center; justify-content: center; padding: 0; }
.slideshow:fullscreen .ss-stage { width: 100vw; height: 100vh; max-height: none; min-height: 0; }
.slideshow:-webkit-full-screen .ss-stage { width: 100vw; height: 100vh; max-height: none; min-height: 0; }
.slideshow:fullscreen .ss-img, .slideshow:-webkit-full-screen .ss-img { width: 100vw; height: 100vh; max-width: none; max-height: none; object-fit: contain; border-radius: 0; }
.slideshow:fullscreen .ss-cap, .slideshow:-webkit-full-screen .ss-cap { position: absolute; left: 0; right: 0; bottom: 16px; margin: 0 auto; color: #fff; font-size: 1rem; text-shadow: 0 1px 4px rgba(0,0,0,.9); }
.slideshow:fullscreen .ss-full, .slideshow:-webkit-full-screen .ss-full { width: 44px; height: 44px; font-size: 1.4rem; }
/* En plein écran : tous les contrôles blancs sur fond noir */
.slideshow:fullscreen .ss-play, .slideshow:fullscreen .ss-full, .slideshow:fullscreen .ss-count,
.slideshow:-webkit-full-screen .ss-play, .slideshow:-webkit-full-screen .ss-full, .slideshow:-webkit-full-screen .ss-count { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.9); }
.slideshow:fullscreen .ss-play:hover, .slideshow:fullscreen .ss-full:hover,
.slideshow:-webkit-full-screen .ss-play:hover, .slideshow:-webkit-full-screen .ss-full:hover { color: #fff; }

/* Plein écran CSS (fallback universel — iOS Chrome/Safari ne supporte pas requestFullscreen sur un div) */
.slideshow.ss-fs { position: fixed; inset: 0; z-index: 9999; background: #000; display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; max-height: none; }
.slideshow.ss-fs .ss-stage { width: 100%; height: 100%; max-height: none; min-height: 0; }
.slideshow.ss-fs .ss-img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; border-radius: 0; }
.slideshow.ss-fs .ss-cap { position: absolute; left: 0; right: 0; bottom: 16px; margin: 0 auto; color: #fff; font-size: 1rem; text-shadow: 0 1px 4px rgba(0,0,0,.9); }
.slideshow.ss-fs .ss-full { width: 44px; height: 44px; font-size: 1.4rem; }
.slideshow.ss-fs .ss-nav { background: rgba(0,0,0,.45); color: #fff; text-shadow: none; }
.slideshow.ss-fs .ss-nav:hover { background: rgba(0,0,0,.8); }
.slideshow.ss-fs .ss-play, .slideshow.ss-fs .ss-full, .slideshow.ss-fs .ss-count { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.9); }

.museum-grid { display: grid; gap: 22px 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.museum-card { display: flex; flex-direction: column; text-decoration: none; }
.museum-thumb { position: relative; display: block; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #eee; }
.museum-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.museum-card:hover .museum-thumb img { transform: scale(1.06); }
.museum-thumb .badge { position: absolute; left: 8px; bottom: 8px; background: var(--accent); color: #fff; font-weight: 700; padding: 3px 11px; border-radius: 50px; font-size: .85rem; }
.museum-cap { margin-top: 9px; color: #000; font-weight: 600; font-size: .95rem; line-height: 1.3; text-align: center; }
