/*
 * Static-mirror fixes for the Nyame Adom Export Services reconstruction.
 *
 * The original Billey/Elementor theme reveals content with JavaScript-driven
 * "entrance" animations (billeyAnimationFadeInUp) that are triggered as the
 * visitor scrolls. Outside the live WordPress environment those scroll
 * triggers don't replay reliably, which can leave sections stuck at ~0
 * opacity. We force every Elementor element to its final, fully-visible
 * state so the page renders exactly as the finished (animated-in) design.
 */
.elementor-invisible {
    visibility: visible !important;
}

.elementor-element {
    opacity: 1 !important;
    animation: none !important;
}
