/* ==========================================================================
   utilities.css — Custom utility classes & overrides
   Monarca Parking Lot Services
   Custom scrollbar styling (preserved from original) plus a screen-reader-only
   utility used by the new skip-navigation link (accessibility — invisible to
   sighted users, so visual appearance is unchanged).
   ========================================================================== */

/* Custom scrollbar (WebKit) — preserved verbatim from the original inline style. */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #1B1B1B;
}
::-webkit-scrollbar-thumb {
  background: #F4C430;
  border-radius: 5px;
}

/* Screen-reader-only: visually hidden but available to assistive tech.
   Used by the skip-to-content link. Becomes visible only on keyboard focus. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  margin: 0;
  clip: auto;
  white-space: normal;
  background-color: #F4C430;
  color: #1B1B1B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Honeypot field — visually and interactively hidden from humans, but still in
   the DOM so spam bots fill it. Intentionally NOT display:none/visibility:hidden,
   since some bots skip those; off-screen positioning is filled more reliably. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
