/* Page-specific styles for the home page */

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  animation: fadeInOnly 2s ease-out 1.5s forwards;
  transition: opacity 1s ease;
}

.scroll-indicator:hover {
  opacity: 0.8 !important;
}

/* Mouse Shape */
.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  margin-bottom: 8px;
}

/* Mouse Wheel */
.mouse-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

/* Scroll Text */
.scroll-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInOnly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes scrollWheel {
  0%, 100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 16px;
    opacity: 0.5;
  }
}

/* Hide scroll indicator on mobile to avoid clutter */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Optional: Auto-hide when user starts scrolling */
.scroll-indicator.hidden {
  opacity: 0 !important;
  pointer-events: none;
}