/* --- Scroll Indicator --- */
html {
    scroll-behavior: smooth;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero-scroll-indicator:hover {
    color: var(--color-brand-gold);
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}