@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

:root {
    --orange-clr: #286ce9;
    --white-clr: #FFF;
    --black-clr: #000;
    --gray-clr: #636363;
    --light-gray-clr: #C4C4C4;
    --dawn-pink-clr: #FAE7E5;
    --frosted-mint-color: #DCFEF9;
}

/* Header Part */

.logo{
    z-index: 6;
}

.logo-txt {
    font-family: 1.5rem;
    color: var(--orange-clr);
    font-weight: bold;
}

a {
    text-decoration: none;
    color: white;
}

span {
    color: var(--black-clr);
}

.navlist {
    display: flex;
    align-items: center;
    gap: 2rem;
}

li {
    list-style: none;
}

.navlinks {
    color: var(--black-clr);
    font-weight: 500;
}

.active,
.navlinks:hover {
    color: var(--orange-clr);
}

.icons-link {
    background: var(--orange-clr);
    width: 2.3rem;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-right: .5rem;
    display: inline-block;
    text-align: center;
    line-height: 2.3rem;
    transition: .3s ease-in-out;
}

.icons-link:hover {
    transform: translateY(-10%);
}

.fa-solid, .fa-brands {
    font-size: 1.1rem;
    color: var(--white-clr);
}

header {
    height: 15vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.container {
    width: 80%;
    margin: auto;
}

.hamtample {
    cursor: pointer;
    display: none;
}

.tample {
    background: var(--black-clr);
    width: 2.5rem;
    height: .3rem;
    margin: .3rem;
    border-radius: 2rem;
}

/* SECTIONS PART */
/* Hero Section */
.hero-section {
    height: calc(100vh - 15vh);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('images/hero.png');
}

.content {
    flex: 1;
}

.image-container {
    flex: 1;
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background-color: var(--dawn-pink-clr);
    width: 35rem;
    height: 30vh;
    border-radius: 50%;
    z-index: -1;
    filter: blur(500px);
}

img {
    max-width: 100%;
    height: auto;
}

[data-type="img-logo"]{
    max-width: 100px;
    /* height: 10px; */
}

.h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    margin-top: 1rem;
}

.bus {
    display: flex;
    align-self: center;
    gap: .5rem;
}

p {
    color: var(--gray-clr);
    margin-block: 1.5rem;
    /* max-width: 500px; */
    font-weight: 300;
}

.btn-container {
    display: flex;
    gap: 1.5rem;
}

button, .form-btn {
    background: var(--orange-clr);
    color: var(--white-clr);
    border: .1rem solid var(--orange-clr);
    padding: .5rem 1.5rem;
    border-radius: 5rem;
    font-size: 1rem;
}

[data-type="bordered-btn"] {
    background: transparent;
    color: var(--orange-clr);
}

.mint-glow::before{
    content: '';
    position: absolute;
    left: -25%;
    width: 50rem;
    height: 100%;
    background: var(--frosted-mint-color);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
}

/* Store Section */
.other-section {
    padding-block: 5rem;
}

.row-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.column-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 1.8rem;
}

[data-type='centered-txt'] {
    text-align: center;
    max-width: 600px;
    margin-block: .5rem;
}

.img-icn {
    height: 50px;
    width: 50px;
}

.card-container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.card {
    width: 16rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .2s ease-in-out;
}

[data-type="including-packages"] {
    padding-block: 2.5rem;
    width: 14rem;
}

.card:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
}

h4 {
    font-weight: 600;
}

/* About Section */

.img-radius {
    border-radius: 1rem;
}

/* Our Packages */
[data-type="package-item"] {
    padding-bottom: .5rem;
    overflow: hidden;
}

[data-type="card-ptxt"] {
    margin-inline: .5rem;
    text-align: justify;
    font-size: .9rem;
}

.image-part{
    width: 100%;
    height: 23vh;
    }
.image-part img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail{
    margin-top: 1rem;
}

/* Newslatter Section */
.form-container{
    margin-top: 1.2rem;
    border: .02rem solid var(--light-gray-clr);
    height: 3.5rem;
    border-radius: 5rem;
    padding: .25rem;
}

/* input[type='email']{
    height: 100%;
    border-radius: 5rem 0 0 5rem;
    border: none;
    font-size: 1rem;
    padding-left: 1rem;
} */

input:focus{
    outline: none;
}

/* Form Section */
.form-card{
    width: auto;
    height: auto;
    /* background: rgba(108, 96, 96, 0.3); */
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: var(--orange-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
}

iframe{
    width: 620px;
    height: 100%;
    border-radius: 20px;
}

.form-group{
    position: relative;
    width: 300px;
    margin: 10px 0;
    /* background-color: #000; */
    /* border-bottom: 3px solid var(--black-clr); */
}

.form-group input{
    width: 100%;
    height: 50px;
    background: transparent;
    border-color: var(--orange-clr);
    /* border: none; */
    /* outline: none; */
    /* padding: 0 30px 0 10px; */

    /* height: 100%; */
    border-radius: 5rem;
    /* border: none; */
    font-size: 1rem;
    padding-left: 1rem;
}

[data-type="form-full-btn"]{
    width: 100%;
}

/* Footer Section */

/* footer{
    margin-bottom: 1rem;
} */

.footer-list{
    margin-top: 1.5rem;
}

.footer-list li{
    margin-block: .5rem;
}

.footer-links{
    font-size: .95rem;
    color: var(--gray-clr);
    font-weight: 300;
}

.footer-links:hover{
    color: var(--orange-clr);
}

[data-type="balanced-txt"]{
    max-width: 400px;
}

footer .card-container{
    justify-content: space-between;
}

.line{
    width: 100%;
    height: .05rem;
    background: var(--light-gray-clr);
    margin-block: 1rem;
}

/* Media Queries */
@media screen and (max-width: 680px) {
    .container{
        width: 90%;
    }
    .image-container{
        display: none;
    }
    .h1{
        font-size: 2.8rem;
    }
    .navlist{
        /* display: none; */
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: center;
        background: var(--dawn-pink-clr);
        height: 100vh;
        width: 50%;
        z-index: 5;
        transform: translate(-100%);
        transition: .5s ease-in-out;
    }

    .navlist-active{
        transform: translate(0%);
    }

    .hamtample{
        display: block;
    }

    .mint-glow::before{
        width: 25rem;
    }

    iframe{
        width: 100%;
    }

    [data-type="img-logo"]{
        max-width: 75px;
        /* height: 10px; */
    }
}