/* Animation styles for background parallax effect */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -100px;
    }
}

/* Floating elements that will be added to the page */
.floating-element {
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

.butterfly {
    width: 60px;
    animation: float 6s ease-in-out infinite;
}

.monkey {
    width: 80px;
    animation: float 8s ease-in-out infinite;
}

.tree {
    width: 120px;
    bottom: 0;
    animation: float 10s ease-in-out infinite;
}

/* Parallax scroll effect */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../assets/images/cheerful wilderness background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-out;
}
