/* Custom styles to supplement Tailwind */
body {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #3E2723;
}
::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D97706;
}

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

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

/* Floating cards hover effect */
.group:hover .group-hover\:rotate-12 {
    transform: rotate(12deg);
}
