/* ===================================
   G7 Design — Shared Nav styles (standalone)
   Styles minimaux indispensables à la barre fixe + overlay hamburger.
   Chargé sur la page iA Nansy, qui n'inclut PAS le style.css principal
   (pour éviter les collisions .reveal / .section-divider / .scroll-indicator).
   Les autres pages reçoivent ces mêmes règles via style.css.
   =================================== */

/* Push content below the fixed top bar (h-16 = 4rem) */
body {
  padding-top: 4rem;
}

/* Anchor targets clear the fixed bar when jumping via #id */
[id] {
  scroll-margin-top: 4.5rem;
}

/* Lock body scroll while the mobile overlay is open */
body.nav-open {
  overflow: hidden;
}

/* Mobile fullscreen nav overlay reveal */
#nav-overlay {
  opacity: 0;
  transition: opacity 0.25s ease;
}

#nav-overlay.open {
  opacity: 1;
}
