/* /style.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.nav-link-active {
    color: #3b82f6;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NEW: Styles for filter buttons */
/* We rely mostly on Tailwind utility classes in the HTML now for the gradient fade effect. 
   This ensures the active state has a nice drop shadow. */
.filter-btn.active {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
    border-color: transparent;
}
/* Custom Active State for the 'Featured' button (Golden Shadow) */
.filter-btn.featured-btn.active {
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4), 0 4px 6px -2px rgba(245, 158, 11, 0.2);
}

.filter-btn.active {
    @apply bg-blue-500 text-white border-blue-500 shadow-md;
}

/* /style.css */

/* ... your existing styles ... */

/* ADD THIS NEW STYLE FOR THE SKILL TAGS */
.skill-pill {
    @apply bg-blue-100 text-blue-800 px-3 py-1.5 rounded-full text-sm font-medium;
}