/* font import */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-fonts {
  font-family: "Poppins";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* shared style */

.centered{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.display-flex{
    display: flex;
}

.fc-main{
    color: #3A3A3A;
}

/* button */

.btn-prebook{
    padding: 10px 24px;
    /* max-width: 196px; */
    background-color: #E02C6D;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 41px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-join-now{
    padding: 10px 24px;
    /* max-width: 196px; */
    background-color: #E02C6D;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* navbar */

nav{
    /* max-width: 1200px; */
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 80px;
    margin-bottom: 50px
}

nav ul li{
    list-style: none;
    font-size: 16px;
    font-weight: 700;
}

nav ul li a{
    text-decoration: none;
    color: #3A3A3A;
}

nav ul{
    gap: 32px;
}

nav h3{
    font-size: 1.5rem;
    font-weight: 800px;
}

/* banner section */

.banner-section{
    /* max-width: 1180px; */
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 69px;
}

/* .banner-content{
    max-width: 582px;
} */

.banner-content h3{
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.banner-content p{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.banner-img{
    background-image: url(images/Circle\ design.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.banner-img img{
    scale: 80%;    
}

/* sponsors section */

.sponsors-section{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    margin: 0 auto;
    border-top: 2px solid rgba(214, 214, 214, 1);
    border-bottom: 2px solid rgba(214, 214, 214, 1);
    padding: 30px 32px;
    /* max-width: 1110px; */
    margin-bottom: 100px;
}

/* popular section */

.popular-section >h3{
    text-align: center;
    margin-bottom: 30px;
}

.popular-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.popular-card-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1047px;
    gap: 30px;
    margin-bottom: 50px;
}

.popular-section .card{
    border-radius: 5px;
    padding: 17px 14px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);

}

.popular-section .card img{
    /* max-width: 300px; */
    width: 100%;
}

.popular-section .card h3{
    color: #18191F;
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 6px;
}

.popular-section .card h4{
    color: rgba(0, 0, 0, 0.87);
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 6px;
}

.popular-section .card> p{
    color: #5E6366;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.1px;
}


.popular-section .card .pd-discription{
    color: #787885;
    font-size: 14px;
    font-weight: 700;
    line-height: 143%;
    letter-spacing: 0.252px;
    /* max-width: 196px; */
}

/* need fix : align right */
.see-more{
    display: flex;
    justify-content: right;
    
}

.see-more a{
    color: rgba(224, 44, 109, 0.87);
    text-align: end;
    text-decoration: none;
}

/* featured section */

.featured{
    margin: 0 auto;
    /* max-width: 1110px; */
    justify-content: space-between;
    gap: 96px;
    align-items: center;
    margin-bottom: 100px;
}

.featured h3{
    color: #0A0826;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 16px;
}

.featured p{
    font-size: 1rem;
    font-weight: 700;
    line-height: 28px;
    color: #6C6C6C;
    margin-bottom: 16px;
}

/* footer section */

footer{
    background-color: #0A0826;
    color: white;
    padding: 50px;
}

.footer-content{
    text-align: center;
    margin: 0 auto;
     /* max-width: 1110px; */
}

.footer-content .social{
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* .footer-content .social a{
    text-decoration: none;
} */

.footer-content h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-content p{
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 17px;
}



/* responsive for mobile devices */

@media screen and (max-width:576px) {

    nav{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin: 0 auto;
        padding-top: 40px;
        margin-bottom: 24px;
    }

    nav ul{
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
    }

    .banner-section{
        flex-direction: column-reverse;
    }

    .banner-img{
        /* max-width: 257px; */
        margin-bottom: 16px;
    }

    .banner-img img{
        scale: 80%;
        width: 100%;
    }

    .banner-content{
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        max-width: 321px;
    }

    .banner-content h3{
        font-size: 1.75rem;
        font-weight: 700;
    }

    .sponsors-section{
        grid-template-columns: repeat(2, 1fr);
        margin: 50px 42px;

    }

    .popular-card-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .featured{
        flex-direction: column-reverse;
        gap: 30px;
    }

    .featured-text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 16px;
    }

    .featured img{
        width: 100%;
        padding: 0 30px;
    }

    footer{
        padding: 50px 68px;
    }

    .footer-content p{
        font-size: 12px;
    }
}