/* Custom Animations and Utilities */
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    background-color: #020617;
    color: #e2e8f0;
}

/* Smooth scrolling is handled by Tailwind 'scroll-smooth' on html */

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

::-webkit-scrollbar-track {
    background: #0f172a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #4fd1c5;
}

/* Animations */
@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 Transition */
.nav-scrolled {
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-default {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
