/* Main App Styles */
body {
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
}
.serif-text {
    font-family: 'Times New Roman', Times, serif; /* Elegant fallback for serif needs */
}
.text-gradient-gold {
    background: linear-gradient(to right, #f4c025, #f8d46e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.border-gold-subtle {
    border-color: rgba(244, 192, 37, 0.2);
}

/* Scroll to Top Button Visibility */
.scroll-hidden {
    opacity: 0;
    visibility: hidden;
}
.scroll-visible {
    opacity: 1;
    visibility: visible;
}
