/* Custom styles to complement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #022c22; /* Fallback */
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #022c22;
}

::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold gradient text utility if needed */
.text-gradient-gold {
    background: linear-gradient(to right, #fcd34d, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
