/* Scroll-based animations only - no font changes */

/* Clean background - no laggy effects */
body.scroll-effects {
    position: relative;
    overflow-x: hidden;
}

/* Enhanced scroll reveal effects - smooth appearance */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for multiple elements */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0084ff, #53acd3, #96f5f5);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Text glow on scroll - subtle effect */
.text-glow-scroll {
    transition: text-shadow 0.5s ease;
}

.text-glow-scroll.glowing {
    text-shadow: 0 0 20px rgba(0, 132, 255, 0.4),
                 0 0 40px rgba(83, 172, 211, 0.2);
}

/* Box glow on scroll - for project content boxes */
.scroll-reveal.revealed .project-details,
.scroll-reveal.revealed .project-problem-statement {
    box-shadow: 0 0 30px rgba(0, 132, 255, 0.15),
                0 0 60px rgba(83, 172, 211, 0.1);
    transition: box-shadow 0.8s ease 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* No font adjustments needed */
}
