/* css/animation-fixes.css */
/* Prevent initial flash of unstyled content */
body {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

/* Hide dynamic content until ready */
#nav-placeholder, #footer-placeholder {
    display: none;
}

/* Animation fix for wow.js */
.wow {
    visibility: hidden;
}

/* Loading indicator styles */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, visibility 0.3s;
}