/* Background Sky */
.sky {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #87CEEB, #E0F6FF); /* Sky gradient */
    overflow: hidden;
}

/* Sun Moving in an Arc */
.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FFD700, #FFA500); /* Sun gradient */
    border-radius: 50%;
    top: 5%;
    left: -10%;
    animation: sunMove 60s linear infinite;
}

@keyframes sunMove {
    0% {
        left: -10%;
        top: 5%;
    }
    50% {
        left: 50%;
        top: 20%;
    }
    100% {
        left: 110%;
        top: 5%;
    }
}

/* Floating Clouds */
.clouds-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    width: 120px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 30px 10px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    filter: blur(2px);
    animation: cloudMove linear infinite;
}

@keyframes cloudMove {
    from {
        left: -10%;
    }
    to {
        left: 110%;
    }
}
