/*
 Theme Name:   GeneratePress Child
 Template:     generatepress
 Version:      1.0.0
 Description:  Child theme GP — skip-link totalement masqué.
*/

/* Focus visible (fallback) */
:where(a,button,input,select,textarea,[role="button"],[tabindex]:not([tabindex="-1"])):focus-visible{
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

/* Offset d’ancre par défaut */
:root { --skip-offset: 80px; }

/* Les ancres (#content / #main) respectent l’offset */
html, body { scroll-padding-top: var(--skip-offset); }
#content, #main, .sr-anchor { scroll-margin-top: var(--skip-offset); }

/* Utilitaire SR-only */
.screen-reader-text{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap; border: 0;
}

/* MASQUER TOTALLEMENT le skip-link (même au focus) */
a.skip-link,
.screen-reader-text.skip-link{
  display: none !important;
}
