/* ==================================
   ANIMATIONS
   Keyframes, Transitions, Scroll Effects
   ================================== */

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.scroll-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
}

.scroll-fade-left {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-fade-left.visible {
    opacity: 1;
}

.scroll-fade-right {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-fade-right.visible {
    opacity: 1;
}

.scroll-scale {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-scale.visible {
    opacity: 1;
}

/* Parallax */
.parallax-bg {
    /* Parallax transform removed */
}

/* Initial Animation */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Glow Effect */
.glow-on-hover {
    position: relative;
    transition: all 0.3s ease;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s;
}

.glow-on-hover:hover::after {
    opacity: 0.7;
}
