/* ============================================================
   Renéra — navigation progress bar
   A thin top bar that animates while the next page loads, giving
   click→load feedback on this multi-page site (no Elementor / no deps).
   Hidden at rest (width 0 / opacity 0) so it never affects snapshots.
   ============================================================ */

.rn-navprogress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--renera-olive-500, #5b7e50);
  box-shadow: 0 0 10px rgba(91, 126, 80, 0.55), 0 0 5px rgba(91, 126, 80, 0.45);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  will-change: width, opacity;
  transition: width 0.25s ease-out, opacity 0.35s ease;
}

.rn-navprogress.is-active {
  opacity: 1;
}

/* Completion: snap to full, then fade out. */
.rn-navprogress.is-done {
  transition: width 0.18s ease-out, opacity 0.45s ease 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .rn-navprogress {
    transition: opacity 0.2s ease;
  }
}
