/* Custom styles - minimal additions to Tailwind */

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

/* Ensure sections have proper spacing for smooth scroll */
section {
    scroll-margin-top: 80px;
}

/* Optional: Add subtle animation on load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero {
    animation: fadeIn 0.8s ease-out;
}
