/* Hide horizontal scrollbar */
html, body {
  overflow-x: hidden;
}

/* Fix mobile menu scrolling */
.mobile-panel {
  -webkit-overflow-scrolling: touch;
  /* Ensure mobile menu can scroll even when background is locked */
  overscroll-behavior: contain;
  /* Set a maximum height and ensure scrolling works properly */
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Animation delays for floating elements */
.float-delay-1 {
  animation-delay: 1s;
}

.float-delay-2 {
  animation-delay: 2s;
}

.float-delay-3 {
  animation-delay: 3s;
}