/* Simple Smooth Page Transitions */

body {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Ensure smooth rendering */
img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    body {
        transition: none !important;
    }
}
