/* Scroll Down Indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

.scroll-indicator {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(185, 154, 123, 0.3);
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 1;
}

.scroll-indicator:hover {
    background-color: rgba(185, 154, 123, 0.5);
    transform: translate(-50%, 0) scale(1.1);
}

.scroll-indicator svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}
