/* Custom styles to apply the Inter font family */
body {
    font-family: 'Inter', sans-serif;
}
/* Style for the active navigation link */
.nav-link.active span {
    color: #f59e0b;
}
.nav-link.active svg {
    color: #f59e0b;
}
/* Custom gradient for the hero text */
.text-gradient-yellow {
    background: -webkit-linear-gradient(#f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-brown {
    background: -webkit-linear-gradient(#A16207, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Footer link hover effect */
footer a.nav-link:hover {
    text-decoration: underline;
    text-decoration-color: #f59e0b;
    text-underline-offset: 4px;
}

/* Back to Top Button Styling */
#backToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 100;
    border: none;
    outline: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: opacity 0.3s, visibility 0.3s;
}
#backToTopBtn:hover {
    background-color: #0056b3;
}
