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

/* Example hover animation for buttons */
button:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

/* Fade-in animation for sections */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

section {
    animation: fadeIn 1s ease-in;
}
