.hero {
    padding: 2% 40px;
    text-align: center;
    background: #f1f5f9;
}

.hero h1{
    font-size:  80px;
    margin-bottom: 20px;
}

.hero p{
    font-size: 60px;
    margin-bottom: 20px;
}

.camps-btn{
    display: inline-block;
    padding: 20px 20px;
    background: #2051ba;
    color: white;
    text-decoration:  none;
    border-radius: 30px;
    font-size: 40px;
    transition: 0.3s;
}

.camps-btn:hover{
    background: #2564eb99;
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
}

.what-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    margin: 10px;
}

.what-container img{
    width: 20%;
    border-radius: 10px;
}

.what-text{
    flex: 1;
}

.what-text h2{
    font-size:  30px;
    margin-bottom: 20px;
}

.what-text p{
    font-size: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .what-container {
        flex-direction: column;  /* stacks image above text */
        text-align: center;
    }

    .what-container img {
        width: 100%;
        max-width: 350px;
    }
}

section{
    padding: 60px 40px;
}

.highlights{
    width: 100%;
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    flex-wrap: wrap;
    background: white;
}

.h_card1{
    /* width: 30%; */
    background: rgb(32, 199, 237);
    padding:  1 px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1 solid #e2e8f0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 30%;
    text-align: center;
    font-size: 20px;
}

.h_card2{
    /* width: 30%; */
    background: rgb(32, 199, 237);
    padding:  1 px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1 solid #e2e8f0;
    /* border-radius: 10px; */
    width: 30%;
    text-align: center;
    font-size: 20px;
}

.h_card3{
    /* width: 30%; */
    background: rgb(32, 199, 237);
    padding:  1 px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1 solid #e2e8f0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 30%;
    text-align: center;
    font-size: 20px;
}

.mission{
    background: #f8fafc;
    text-align: center;
}

.our-camps{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
}

.card_spring{
    position: relative;
    background: rgb(32, 199, 237);
    /* padding:  1 px; */
    padding-top: 5px;
    padding-bottom: 5px;
    /* border: 1 solid #e2e8f0; */
    gap: 40px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
    font-size: 20px;
    height: 450px;
    text-decoration: none;
    color: black;
}

.spring_slide{
    position: absolute;
}

.spring_slide img{
    position: relative;
    width: 600px;
    display: block;
}

.spring_overlay{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}

.spring-link {
    text-decoration: none;
    color: inherit;
}

.spring-link:hover {
    text-decoration: none;
}

.card_spring:hover .spring_overlay{
    opacity: 1;
}

.card_summer{
    position: relative;
    background: rgb(32, 199, 237);
    /* padding:  1 px; */
    padding-top: 5px;
    padding-bottom: 5px;
    /* border: 1 solid #e2e8f0; */
    gap: 40px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
    font-size: 20px;
    height: 450px;
    text-decoration: none;
    color: black;
}

.summer_flyer{
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.summer_flyer img{
    position: relative;
    height: 400px;
    display: block;
}

.summer_overlay{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}

.summer-link {
    text-decoration: none;
    color: inherit;
}

.summer-link:hover {
    text-decoration: none;
}

.card_summer:hover .summer_overlay {
    opacity: 1;
}