/* Fix for hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    animation: bounceScroll 2s infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hide on mobile */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none !important;
    }
}
