/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/

#hero-contact {
    background-color: var(--headingText);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 200px; /* adjust as needed */
}

.contact-cs-title-white {
    padding-bottom: 2rem;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--bodyTextWhite);
}


@media only screen and (min-width: 1024px) {

    #hero-contact {
        height: 275px; /* adjust as needed */
    }

}

/*-- -------------------------- -->
<---    Programs Overview       -->
<--- -------------------------- -*/

#overview {
    background-color: #FDF5F2;
}
#overview .cs-container {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

#overview .text-content {
    margin: auto;
}

#overview .age-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
}

#overview h2 {
    max-width: 1000px;
}
.age-icon {
    background-color: var(--backgroundPale);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#overview .cs-text {
    opacity: 1;
    margin-bottom: 0rem;
}
#overview .age {
    margin-bottom: 1rem;
}

#overview .learn-more-btn {
    color: inherit;

}

@media screen and (min-width: 1024px) {
    .age-icon {
        height: 225px;
        width: 225px;
    }
}

/*-- -------------------------- -->
<---     program-section        -->
<--- -------------------------- -*/

.program-section {
    scroll-margin-top: 80px;
}
.program-section .cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.program-section .cs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.program-section .cs-title {
    margin-bottom: 0rem;
}
.program-section .sub-heading {
    opacity: 1;
}
.program-section .cs-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.program-section .bullets {
    display: flex;
    flex-direction: column;
}
.program-section .who-icon {
    width: 61px;
    height: 61px;
    margin: auto;
    margin-bottom: 1rem;
    border-radius: 50%;
    background-color: #ECAA12;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: start;
    flex-shrink: 0;
}

.program-section .who-item .cs-h3 {
    color: inherit; 
    opacity: 0.8
}

.program-section .who-icon-1 {
    background-color: #02B890
}
.program-section .who-icon-2 {
    background-color: #FE5D37;
    
}
.program-section .who-icon-3 {
    background-color: #ECAA12;
}

.program-section .image-content {
    position: relative;
    width: 80%;
    max-width: 500px;
}
.program-section .image-content picture {
    width: 100%;
    display: block;
    margin: auto;
    position: relative;
}

.program-section .image-content picture img {
    width: 100%;
    height: 100%;
    /* border: 16px solid #FFFFFF; */
    filter: drop-shadow(0px 4px 25px rgba(0, 0, 0, 0.25));
    border-radius: 20px;
    overflow: hidden;
}

.program-section .cs-text:last-of-type {
    margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
    .program-section .cs-container {
        flex-direction: row;
        justify-content: space-evenly;
        gap: clamp(2rem, 4vw, 4rem);
    }

    .program-section .cs-content {
        order: 2;
        max-width: 500px;
        text-align: start;
        align-items: start;
    }

    .program-section .bullets {
        flex-direction: row;
    }

    .program-section .who-icon {
        margin-top: 0.5rem;
        margin-right: 0.75rem;
    }
    
    .program-section .who-item {
        margin-bottom: 0.25rem;
    }
    .program-section .who-item .cs-h3 {
        margin-bottom: 0.5rem;
    }
    .program-section .who-item .cs-text {
        line-height: 1.25rem;
    }
}

@media screen and (min-width: 1300px) {
    .program-section .cs-content {
        max-width: 700px;
    }
}



/*-- -------------------------- -->
<---   advanced-preschool       -->
<--- -------------------------- -*/
.even-section {
    background-color: var(--backgroundPale);
}

@media screen and (min-width: 1024px) {
    .even-section .cs-content {
        order: 1;
    }

    .even-section .image-content {
        order: 2;
    }

}