/* ═══════════════════════════════════════════════════════════════════════════
   Culture et Cinéma — Site public
   Direction : editorial, chaleureux, cinéphile
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --creme:       #FAF7F2;
  --creme-dark:  #F0EBE3;
  --rouge:       #8B1A1A;
  --rouge-light: #A52020;
  --rouge-pale:  #F5E8E8;
  --anthracite:  #1C1C1C;
  --gris:        #5C5C5C;
  --gris-light:  #9A9A9A;
  --border:      #E0D8CE;
  --gold:        #C5973A;

  /* Stacks système sans Google Fonts */
  --font-display: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', Palatino, 'Book Antiqua', Georgia, serif;
  --font-body:    Georgia, 'Times New Roman', 'DejaVu Serif', serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 2px 12px rgba(28,28,28,.08);
  --shadow-lg:   0 8px 32px rgba(28,28,28,.12);

  /* Page "À l'affiche" (lesavesvous.php) — réglages ajustables */
  --affiche-cols:        3;
  --affiche-gap:         24px;
  --affiche-card-gap:    14px;
  --affiche-poster-w:    90px;
  --affiche-pastille-w:  24px;
  --affiche-font-titre:  1.05rem;
  --affiche-font-meta:   .72rem;
  --affiche-font-classif:.7rem;
  --affiche-font-real:   .8rem;
  --affiche-font-acteurs:.78rem;
  --affiche-font-seance: .72rem;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--creme);
  color: var(--anthracite);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--anthracite);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--rouge);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.site-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
}
.site-logo-sub {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.site-nav a {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.site-nav a:hover,
.site-nav a.active { color: #fff; }
.site-nav a.active { border-bottom: 2px solid var(--rouge); padding-bottom: 2px; }

/* ── Bandeau héro ───────────────────────────────────────────────────────────── */
.hero {
  background: var(--anthracite);
  color: #fff;
  padding: 64px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(139,26,26,.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  font-style: italic;
}

/* ── Contenu ────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 56px 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.section-title span {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-light);
}
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--rouge);
  margin: 10px 0 32px;
}

/* ── Semaine en cours ───────────────────────────────────────────────────────── */
.semaine-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rouge);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Grille films ───────────────────────────────────────────────────────────── */
.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.film-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.film-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.film-card-poster {
  aspect-ratio: 2/3;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}
.film-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.film-card:hover .film-card-poster img {
  transform: scale(1.04);
}
.film-card-poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}
.film-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
}
.badge-vost   { background: #1a1a2e; color: #fff; }
.badge-ae     { background: #1a4731; color: #fff; }
.badge-event  { background: var(--gold); color: #fff; }
.film-card-body {
  padding: 14px 16px 16px;
}
.film-card-date {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--rouge);
  font-weight: 500;
  margin-bottom: 4px;
}
.film-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 4px;
}
.film-card-real {
  font-family: var(--font-body);
  font-size: .78rem;
  font-style: italic;
  color: var(--gris);
  margin-bottom: 8px;
}
.film-card-info {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--gris-light);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Film héro (affiche en premier plan) ──────────────────────────────────── */
.film-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.film-hero-poster {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 2/3;
}
.film-hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.film-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}
.film-hero-real {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--gris);
  margin-bottom: 16px;
}
.film-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.film-meta-item {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--gris);
}
.film-meta-item strong {
  display: block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-light);
  margin-bottom: 2px;
}
.film-synopsis {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.75;
  color: var(--anthracite);
  margin-bottom: 28px;
}
.seances-liste {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--creme-dark);
  border-radius: var(--radius);
  padding: 12px 16px;
  border-left: 3px solid var(--rouge);
}
.seance-date {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  min-width: 120px;
}
.seance-heure {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--rouge);
}

/* ── Infos pratiques ────────────────────────────────────────────────────────── */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.info-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.tarifs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: .88rem;
}
.tarif-item:last-child { border: none; }
.tarif-prix {
  font-weight: 600;
  color: var(--rouge);
  font-size: 1rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--anthracite);
  color: rgba(255,255,255,.6);
  padding: 40px 24px;
  margin-top: 80px;
  border-top: 3px solid var(--rouge);
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.site-footer-text {
  font-family: var(--font-ui);
  font-size: .78rem;
}
.site-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.site-footer-links a {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.site-footer-links a:hover { color: #fff; }

.site-logo-name        { font-size: 1.35rem; }
.site-nav a            { font-size: .88rem; }
.hero-title            { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.section-title         { font-size: 1.75rem; }
.film-card-title       { font-size: 1.08rem; }
.film-card-date        { font-size: .78rem; }
.film-card-real        { font-size: .84rem; }
.film-card-info        { font-size: .76rem; }
.film-hero-title       { font-size: clamp(2rem, 3.2vw, 3rem); }
.film-hero-real        { font-size: 1.08rem; }
.info-card-title       { font-size: 1.2rem; }
.seance-date           { font-size: 1.02rem; }
.seance-heure          { font-size: 1.08rem; }
.site-footer-name      { font-size: 1.08rem; }

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

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  body { padding-top: 64px; }
  .site-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 300;
  }
  .site-header-inner {
    padding: 0 16px;
  }
  .hamburger {
    display: flex;
    margin-right: 0;
  }
  .site-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    width: 100%;
    background: var(--anthracite);
    flex-direction: column;
    gap: 0;
    border-top: 2px solid var(--rouge);
    z-index: 299;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .site-nav.open { display: flex; }
  .site-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav a {
    display: block;
    padding: 16px 24px;
    font-size: .9rem;
    color: rgba(255,255,255,.85);
  }
  .film-hero-grid { grid-template-columns: 1fr; }
  .film-hero-poster { max-width: 200px; }
  .films-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .container { padding: 0 16px; }
}
@media (max-width: 480px) {
  .films-grid { grid-template-columns: 1fr; }
}

/* ── Pages légales ───────────────────────────────────────────────────────────── */
.page-legale {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--anthracite);
}
.page-legale h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 12px;
}
.page-legale h2:first-child { margin-top: 0; }
.page-legale p  { margin-bottom: 8px; }
.page-legale ul { margin: 8px 0 8px 20px; line-height: 2; }
.page-legale .date-maj { color: var(--gris); font-style: italic; margin-bottom: 28px; }


/* ── Tarifs ───────────────────────────────────────────────────────────────── */
.tarifs-bloc        { margin-top:20px; }
.tarifs-titre       { font-family:var(--font-ui);font-size:.7rem;font-weight:600;
                      letter-spacing:.1em;text-transform:uppercase;
                      color:var(--gris-light);margin-bottom:10px; }
.tarifs-liste       { display:flex;flex-wrap:wrap;gap:10px;
                      background:var(--rouge-pale);border:1px solid var(--rouge);
                      border-radius:var(--radius);padding:12px 16px; }
.tarifs-liste span  { font-family:var(--font-ui);font-size:.85rem;color:var(--gris); }
.tarifs-liste strong{ color:var(--rouge); }

/* ── À l'affiche — grille 3 colonnes (affiche / infos / classification) ─────── */

.hero--compact { padding: 40px 24px 32px; }
.hero-title--sm { font-size: 2rem; }

.selecteur-groupe {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.selecteur-groupe--mois { margin-bottom: 40px; }
.selecteur-label {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-light);
  margin-right: 4px;
}
.selecteur-lien {
  font-family: var(--font-ui);
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--gris);
  text-decoration: none;
}
.selecteur-lien--annee { font-size: .82rem; font-weight: 600; }
.selecteur-lien--mois  { font-size: .78rem; }
.selecteur-lien--annee.active {
  background: var(--anthracite);
  color: #fff;
  border-color: var(--anthracite);
}
.selecteur-lien--mois.active {
  background: var(--rouge);
  color: #fff;
  border-color: var(--rouge);
}

.affiche-vide {
  color: var(--gris);
  font-style: italic;
  text-align: center;
  padding: 60px 0;
}

.affiche-grille {
  display: grid;
  grid-template-columns: repeat(var(--affiche-cols), 1fr);
  gap: var(--affiche-gap);
}

.affiche-carte {
  display: flex;
  gap: var(--affiche-card-gap);
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.affiche-carte:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Affiche, réduite, avec le pictogramme incrusté */
.affiche-carte__poster {
  position: relative;
  flex: 0 0 var(--affiche-poster-w);
  width: var(--affiche-poster-w);
  background: var(--anthracite);
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}
.affiche-carte__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.affiche-carte__poster-vide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,.2);
}
.affiche-carte__classification {
  position: absolute;
  top: 5px;
  right: 5px;
  width: var(--affiche-pastille-w);
  height: var(--affiche-pastille-w);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.affiche-carte__classification img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Texte, à côté */
.affiche-carte__infos {
  flex: 1 1 auto;
  min-width: 0;
}
.affiche-carte__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.affiche-carte__titre {
  font-family: var(--font-display);
  font-size: var(--affiche-font-titre);
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.25;
  margin-bottom: 4px;
}
.affiche-carte__meta {
  font-family: var(--font-ui);
  font-size: var(--affiche-font-meta);
  color: var(--gris-light);
  margin-bottom: 4px;
}
.affiche-carte__classification-label {
  font-family: var(--font-ui);
  font-size: var(--affiche-font-classif);
  font-weight: 600;
  color: var(--rouge);
  margin-bottom: 8px;
}
.affiche-carte__realisateur {
  font-family: var(--font-body);
  font-size: var(--affiche-font-real);
  font-style: italic;
  color: var(--gris);
  margin-bottom: 2px;
}
.affiche-carte__acteurs {
  font-family: var(--font-body);
  font-size: var(--affiche-font-acteurs);
  color: var(--gris);
  margin-bottom: 8px;
}
.affiche-carte__seances {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.affiche-carte__seances li {
  font-family: var(--font-ui);
  font-size: var(--affiche-font-seance);
  font-weight: 500;
  color: var(--rouge);
  background: var(--rouge-pale);
  padding: 3px 7px;
  border-radius: 2px;
}

@media (max-width: 480px) {
  .affiche-grille { gap: 14px; }
}

/* ── Panneau de réglages (journaliste) ───────────────────────────────────── */
.reglages-bouton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--anthracite);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.reglages-bouton:hover { background: var(--rouge); }

.reglages-panneau {
  position: fixed;
  bottom: 78px;
  right: 20px;
  width: 280px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 100;
}
.reglages-entete {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.reglages-fermer {
  background: none;
  border: none;
  font-size: .9rem;
  color: var(--gris-light);
  cursor: pointer;
  padding: 0;
}
.reglages-groupe-titre {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris-light);
  margin: 16px 0 8px;
}
.reglages-groupe-titre:first-of-type { margin-top: 0; }
.reglages-champ {
  display: block;
  margin-bottom: 10px;
}
.reglages-champ span {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: .74rem;
  color: var(--gris);
  margin-bottom: 3px;
}
.reglages-champ span b {
  color: var(--rouge);
  font-weight: 700;
}
.reglages-champ input[type="range"] {
  width: 100%;
}
.reglages-reinit {
  width: 100%;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--gris);
  cursor: pointer;
}
.reglages-reinit:hover { background: var(--creme-dark); }

@media print {
  .reglages-bouton, .reglages-panneau { display: none !important; }
}

/* ── programme.php — programme du mois par semaine ──────────────────────── */
.programme-vide {
  color: var(--gris);
  font-style: italic;
  text-align: center;
  padding: 60px 0;
}

.programme-semaine { margin-bottom: 48px; }
.programme-semaine__titre {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rouge-pale);
}
.programme-semaine__films {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programme-carte {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.programme-carte:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Miniature : hauteur = hauteur de la carte (stretch grid) */
.programme-carte__poster {
  background: var(--anthracite);
  overflow: hidden;
}
.programme-carte__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.programme-carte__poster-vide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,.2);
}

.programme-carte__infos { padding: 14px 16px; }
.programme-carte__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.programme-carte__titre {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.programme-carte__realisateur {
  font-family: var(--font-body);
  font-size: .8rem;
  font-style: italic;
  color: var(--gris);
  margin-bottom: 8px;
}
.programme-carte__public-info {
  font-family: var(--font-body);
  font-size: .78rem;
  font-style: italic;
  color: var(--gris);
  margin-bottom: 8px;
}
.programme-carte__seances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.programme-carte__seances span {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 500;
  color: var(--rouge);
  background: var(--rouge-pale);
  padding: 3px 8px;
  border-radius: 2px;
}
.programme-carte__tarifs { margin-top: 6px; }

/* ══════════════════════════════════════════════════════════════════════
   ANTI-SPAM — champ piège (honeypot) & email obfusqué
   ══════════════════════════════════════════════════════════════════════ */

/* Champ leurre : hors écran plutôt que display:none (plus difficile à
   détecter par un bot qui inspecte grossièrement le CSS calculé). */
.champ-piege {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Lien email — décodé en JS au chargement (voir assets/js/public.js).
   Style générique reprenant l'apparence des liens de contact du site. */
.email-obf {
  color: var(--rouge);
  font-family: var(--font-ui);
  font-weight: 500;
  text-decoration: none;
}
.email-obf:hover { text-decoration: underline; }

/* Variante bloc, utilisée dans les cartes info (accueil / infos pratiques) */
.email-obf--bloc {
  display: block;
  margin-top: 8px;
  font-size: .88rem;
}
.email-obf--bloc:first-of-type { margin-top: 10px; }
