/* DEMO-BANNER.CSS — STAGED 2026-06-11, NON DÉPLOYÉ.
   Bandeau ambre discret + écran d'accueil démo (mode_demo_spec.md § 4). */

.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: #fef3c7;            /* ambre discret */
  color: #78350f;
  border-bottom: 1px solid #f59e0b;
  font: 500 12.5px/1.4 system-ui, -apple-system, "Segoe UI", sans-serif;
  text-align: center;
  padding: 5px 12px;
  cursor: pointer;
  user-select: none;
}
.demo-banner--expired {
  background: #fee2e2;
  color: #7f1d1d;
  border-bottom-color: #ef4444;
}
/* on pousse l'app sous le bandeau (hauteur ~26px) */
body.demo-mode { padding-top: 26px; }
body.demo-mode #map { top: 26px; }

.demo-welcome {
  position: fixed; inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.demo-welcome__card {
  background: #fff;
  border-radius: 14px;
  max-width: 430px;
  padding: 26px 24px 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  font: 400 14px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1e293b;
}
.demo-welcome__card h2 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #b45309;
}
.demo-welcome__big {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 14px;
}
.demo-welcome__card ul {
  margin: 0 0 16px;
  padding-left: 18px;
}
.demo-welcome__card li { margin-bottom: 6px; }
.demo-welcome__ok {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #f59e0b;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px;
  cursor: pointer;
}
