/* Scroll Down Button Styles */
.scroll-down-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-down-button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-down-button:active {
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Arrow icon */
.scroll-down-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #333;
    margin-top: 2px;
}

/* Alternative chevron icon using CSS */
.scroll-down-button.chevron::before {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    margin-top: -3px;
    border-top: none;
    border-left: none;
}

/* Show only on mobile devices */
@media screen and (max-width: 768px) {
    .homeBanner .container {
        position: relative;
    }
    
    .scroll-down-button {
        display: flex;
    }
}

/* Hide on larger screens */
@media screen and (min-width: 769px) {
    .scroll-down-button {
        display: none !important;
    }
}

/* Animation for scroll hint */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-5px);
    }
    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.scroll-down-button.animate {
    animation: bounce 2s infinite;
}