.spring-clean-banner {
    margin-top: 50px;
    background-image: url('Pictures-Screenshots/DESK.jpg'); /* Add a spring-themed image */
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 500px; /* Adjust this value to increase the height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Titillium Web";
}

@media screen and (max-width: 768px) {
    .spring-clean-banner {
        min-height: 200px;
    }
}

.spring-clean-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(151, 245, 114, 0.116); /* Adds a green overlay */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1,
.banner-content p,
.book-now-btn {
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.scroll-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scroll-out {
    opacity: 0 !important;
    transform: translateY(-50px) !important;
}
