/* =============================================
   ANIMATIONS.CSS — Apple-Level Animation Styles
   Splash Creative Theme
   ============================================= */

/* === Lenis Smooth Scroll === */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* === Reveal Initial States === */
.will-animate {
    visibility: hidden;
}

/* === Split Text Line Wrappers === */
.split-line {
    overflow: hidden;
    display: block;
}

.split-line-inner {
    display: block;
}

/* === Image Reveal === */
.img-reveal {
    overflow: hidden;
    will-change: transform;
}

.img-reveal img {
    will-change: transform;
}

/* === Magnetic Button Hints === */
.btn {
    will-change: transform;
}

/* === Custom Project Cursor === */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    mix-blend-mode: normal;
}

/* === Parallax Container === */
.parallax-wrap {
    overflow: hidden;
    will-change: transform;
}

.parallax-wrap img {
    will-change: transform;
}

/* === Disable Heavy Animations on Mobile === */
@media (max-width: 767px) {
    .will-animate {
        visibility: visible !important;
    }

    .cursor-dot {
        display: none !important;
    }
}
