/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #081B1B;
}

::-webkit-scrollbar-thumb {
    background: #203B37;
    border-radius: 4px;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #081B1B;
}