@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Base Styles */
body {
    font-family: 'Outfit', sans-serif;
    /* Background handled by Tailwind classes in header.php */
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

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

/* Utilities & Animations */
@layer utilities {
    .animate-tilt {
        animation: tilt 10s infinite linear;
    }

    @keyframes tilt {

        0%,
        100% {
            transform: rotate(0deg);
            opacity: 0.3;
        }

        50% {
            transform: rotate(1deg);
            opacity: 0.5;
        }
    }
}

/* Styles moved from index.php */

/* Reveal Animation Helper */
.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

/* Staggered Animation Delays for Sections */
section:nth-child(2) {
    animation-delay: 0.2s;
}

section:nth-child(3) {
    animation-delay: 0.4s;
}

section:nth-child(4) {
    animation-delay: 0.6s;
}

section:nth-child(5) {
    animation-delay: 0.8s;
}

/* Filter Button Active State */
.filter-btn.active {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    border-color: transparent;
}