/* ==================================================
   NX HERO SCROLL EFFECT — MOTION & TRANSITION ENGINE
   Class Hook: .home_hero-background-scroll-effect
================================================== */

.home_hero-background-scroll-effect {
  
  pointer-events: none !important;    /* Anti-halang klik mouse */
  overflow: hidden !important;

  /* 2. Hardware Acceleration (GPU Engine) */
  will-change: transform, opacity !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transform-style: preserve-3d !important;

  /* 3. Smooth Transition Curves (Cubic-Bezier Automotive) */
  transition: 
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}