/* Hovereffekt Menü */
.hmenu,
.onklick:hover {
  cursor: pointer;
}

/* Vertical Section Scrolling */
@media (min-height: 1001px) and (max-height: 1400px) {
  /* Vertical Section-Scrolling für 1900x1200er-Bildschirme */
  html,
  body {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .header {
    scroll-snap-align: start;
  }

  .site-card {
    scroll-snap-align: start;
    min-height: 100vh;
  }

  .footer {
    scroll-snap-align: start;
  }
}

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

@media (min-height: 1001px) and (max-height: 1400px) { 
#topButton.visible:hover {
  opacity: 1;
}

#topButton.visible {
  opacity: 0.7;
  display: block;
  pointer-events: auto;
}
}

@media (min-height: 1001px) and (max-height: 1400px) {  
  /*Hover der Hover-Boxen*/
  .hover-box {
    transition: all 0.3s ease;
  }
  .hover-box:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

