/**
 * assets/css/background-paths.css — GalerieGRAPH Background Paths
 * SVG paths animés en fond du hero homepage.
 * CSS natif uniquement — aucune dépendance externe.
 */

/* ── Conteneur SVG ──────────────────────────────────────── */
.gg-bgpaths {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* ── Animation : segment glisse le long du path ─────────── */
@keyframes gg-path-flow {
  from { stroke-dashoffset: var(--gg-pl); }
  to   { stroke-dashoffset: calc(var(--gg-pl) * -0.1); }
}

/* ── Reduced motion : statique, très discret ────────────── */
@media (prefers-reduced-motion: reduce) {
  .gg-bgpaths path {
    animation: none !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    stroke-opacity: 0.04 !important;
  }
}
