/* Custom styles to supplement Tailwind */

body {
    background-color: #1a0d14; /* Plum 900 */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a0d14;
}
::-webkit-scrollbar-thumb {
    background: #4a2c3a;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fbbf24;
}

/* 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 Scroll Effect */
.nav-scrolled {
    background-color: rgba(26, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* Form Focus States */
input:focus, textarea:focus {
    background-color: #2d1b24;
}
