/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    width: 50px;
    height: 50px;
    background-color: #3a2426; /* Dark background */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
}


#scrollToTopBtn:hover {
    background-color: #a98d4e; /* Goldish color on hover */
    transform: scale(1.1);
}
