/* Custom Animations & Utilities */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #050810;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Navbar Styles */
nav.scrolled {
    background-color: rgba(5, 8, 16, 0.95);
    padding-top: 1rem;
    padding-bottom: 1rem;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(to right, #D4AF37, #F3E5AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a192f;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}
