/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture or pattern could go here */
}

/* Custom Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover effects for images */
img {
    transition: transform 0.3s ease;
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
