/* ============================================
   GSAP ANIMATION CLASSES
   ============================================ */

/* Elements that will be animated */
/* Default: visible (fallback if JS disabled) */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure GSAP animations override CSS */
.fade-up[style*="opacity"] {
    /* GSAP inline styles will take precedence */
}

/* After GSAP animation completes, ensure visibility */
body.gsap-ready .fade-up.gsap-animated {
    opacity: 1;
}

.fade-in {
    opacity: 0;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
}

/* Text reveal classes */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
}

/* Image reveal classes */
.image-reveal {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

/* Stagger animation container */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

/* Magnetic button effect */
.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Cursor effect (optional) */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 107, 107, 0.1);
}

