/**
 * Nanimation Studios — Custom Styles
 * Loaded on all pages. Keep lightweight.
 *
 * @version 1.0.0
 */

/* ===== Global Overrides ===== */

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

/* Ensure animation backgrounds sit behind content */
.animation-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

/* ===== CTA Button Enhancements ===== */

/* Subtle glow on primary CTA buttons */
.tm-page a.uk-button-primary:hover {
    box-shadow: 0 0 20px rgba(6, 106, 171, 0.4);
    transition: box-shadow 0.3s ease;
}

/* ===== Performance ===== */

@media (prefers-reduced-motion: reduce) {
    .animation-background,
    .animation-background * {
        animation: none !important;
        opacity: 0.3;
    }
}
