/* Custom Styles */
body {
    scroll-behavior: smooth;
}

/* Custom fade-in animation */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
}

.animation-delay-500 {
    animation-delay: 0.5s;
}

.animation-delay-1000 {
    animation-delay: 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Overlay Effect */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

@media (min-width: 768px) {
    .parallax-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    }
}