/* Custom styles for portfolio - Tailwind handles most styling */

html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 4rem;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
