
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;600;800&family=Orbitron:wght@900&family=Poppins:wght@400;600;800&family=Roboto+Mono:wght@300;400;500;600;700&family=Roboto:ital,wght@0,400;1,300;1,500&display=swap');

:root
{
    --primary-color:#3685fb;
    --primary-color-dark:#2f73d9;
    --secondary-color:#fafcff;
    --text-dark:#0d213f;
    --text-light:#767268;
    --extra-light:#ffffff;
    --max-width: 1200px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}
body
{
    font-family: 'Poppins', sans-serif;
}
.section-Container
{
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}
.header-Container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;

}
.section-Title
{
    font-size: 2rem;
    font-weight: 600;
    color:var(--text-dark);
    margin-bottom: 1rem;

}
.section-Subtitle
{
    font-size: 1rem;
    color:var(--text-dark);
    max-width: calc(var(--max-width) / 2);

}
.btn
{
    padding: .75rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color:var(--extra-light);
    background-color: var(--primary-color);
    border-radius: 5rem;
    cursor: pointer;
    transition: .3s;
    
}
.btn:hover
{
    background-color: var(--primary-color-dark);

}
a{
    text-decoration: none;
}
img{
    width: 100%;
    display: block;

}
nav
{
    padding: 1rem;
    position: absolute;
    top:0;
    left:50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.navLogo
{
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--text-dark);
    cursor: pointer;
}
.navLogo span
{
    color:var(--primary-color);
}

.links
{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;

}
.links a
{
    padding: 0 1rem;
    color:var(--text-dark);
    transition: 0.3s;

}
.links a:hover{
    color:var(--primary-color);
}

header
{
    background-color: var(--secondary-color);

}
.header-Container
{
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:2rem;

}
.header-Image
{
    position: relative;
}
.header-Image img{
    position: absolute;
    top:50%;
    left:50%;
    border: 0.5rem solid var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.1);


}
.header-Image img:nth-child(1)
{
    max-width: 350px;
    transform: translate(-75%, -50%);
}

.header-Image img:nth-child(2)
{
    max-width: 250px;
    transform: translate(0%, -25%);
}
.header-Content
{
    display: flex;
    align-items: center;
    justify-content: center;

}

.header-Content > div{
    max-width: 400px;
    display: grid;
    gap:1rem;
}

.header-Content .sub-Header
{
    font-size: 1rem;
    font-weight: 600;
    color:var(--primary-color);

}

.header-Content h1{
    font-size: 3rem;
    line-height: 4rem;
    font-weight: 800;
    color:var(--text-dark);

}
.header-Content .action-Btn
{
    display: flex;
    align-items: center;
    gap:2rem;
    margin-top: 1rem;

}

.story
{
    display: flex;
    align-items: center;
    gap:2rem;
    cursor: pointer;
}

.video-Image
{
    position: relative;
}

.video-Image img{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.1);

}

.video-Image span
{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);

}

.video-Image span i
{
    padding: .5rem;
    font-size: 1rem;
    color:red;
    background-color: var(--extra-light);
    border-radius: 100%;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.1);
}

.story > span{
    font-size: 1rem;
    font-weight: 600;
    color:var(--text-dark);

}

.destination-Nav
{
    display: flex;
    gap: 1rem;
}
.destination-Nav span
{
    width: 30px;
    height: 30px;
    display: grid;
    place-content:center;
    color:var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}
.destination-Nav span:hover{
    color:var(--extra-light);
    background-color: var(--primary-color);

}
.destination-Grid
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.destination-Cards
{
    overflow: hidden;
    position: relative;
    isolation: isolate;
    cursor: pointer;

}
.destination-Cards img{
    border-radius: 1rem;

}
.destination-Details
{
    position: absolute;
    width: calc(100% - 2rem);
    padding: 1rem;
    bottom: -6rem;
    left:50%;
    transform: translateX(-50%);
    text-align: center;
    color:var(--extra-light);
    background-color: rgba(255,255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    z-index: 1;
    transition: 0.5s;

}
.destination-Cards:hover .destination-Details
{
    bottom: 1rem;
}
.detination-Title
{
    font-size: 9rem;
    margin-bottom: .5rem;

}
.destination-SubTitle
{
    font-size: 1rem;
    font-weight: 600;
}


.trip-Sec
{
    background-color: var(--secondary-color);
}

.trip-Container :is(.section-Title, .section-SubTitle, .view-All)
{
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.trip-Grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.trip-Cards
{
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.1);

}

.trip-Details
{
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color:var(--text-dark);
    background-color: var(--extra-light);
    cursor: pointer;

}
.rating{
    color:goldenrod;
}


.booking-Price
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price{
    font-weight: 400;
    font-size: 0.9rem;
    color:var(--text-light);

}
.price span{
    font-weight: 400;
    font-size: 0.9rem;
    color:var(--text-light);
}
.book-Now
{
    padding: .5rem 1.5rem;
    color:var(--primary-color);
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 5rem;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;


}
.book-Now:hover{
    color:var(--extra-light);
    background-color: var(--primary-color);

}


.gallary-Container
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:2rem;
}
.image-Gallary
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:1rem;

}
.gallary-Col
{
    display: grid;
    place-content: center;
    gap: 1rem;
}
.gallary-Col img
{
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
.gallary-Content
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.gallary-Content > div{
    max-width: 400px;
}

.gallary-Content .section-Subtitle
{
    margin-bottom: 2rem;
}

.Subscribe
{
    background-color: var(--secondary-color);

}

.section-Container
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:2rem;

}

.subscribe-Form
{
    display: flex;
    align-items: center;
    justify-content: center;

}

.subscribe-Form form
{
    width: 100%;
    max-width: 400px;
    display: flex;
    background-color: var(--extra-light);
    box-shadow: 5px 5px rgba(0,0,0,0.1);
    border-radius: 5rem;

}

.subscribe-Form input
{
    width: 100%;
    padding: 1rem;
    outline: none;
    border: none;
    border-radius: 5rem;
    font-size: 1rem;
    
}

.footer-Sec
{
    background-color: var(--text-dark);

}

.footer-Container
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    color: var(--secondary-color);


}

.footer-Col h3
{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.footer-Col h3 span
{
    color: var(--primary-color);

}
.footer-Col p
{
    font-size: 0.8rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.footer-Col p:hover{
    color:var(--primary-color);
}

.footer-Col p span
{
    font-weight: 600;
}

.footer-Col h4{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;

}
.footer-Bar
{
    max-width: var(--max-width);
    margin: auto;
    padding: .5rem;
    text-align: center;
    font-size: .8rem;
    color:var(--secondary-color);
    border-top: 1px solid var(--extra-light);

}


/* Media Query For Responsive  */

@media (width < 1200px){
    .header-Image img:nth-child(1){
        max-width: 300px;
    }

    .header-Image img:nth-child(2){
        max-width: 200px;
    }
}
@media (width < 900px){
    .links
    {
        display: none;
    }
    .header-Container
    {
        grid-template-columns: repeat(1, 1fr);
    }
    .header-Image
    {
        min-height: 500px;
    }

    .destination-Grid
    {
        gap: 1rem;
    }
    .trip-Grid
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 600px)
{
    .destination-Grid
    {
        grid-template-columns: repeat(2, 1fr);
    }

    .trip-Grid
    {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallary-Container
    {
        grid-template-columns: repeat(1, 1fr);
    }

    .subscribe-Container
    {
        grid-template-columns: repeat(1,1fr);
    }

    .footer-Container
    {
        grid-template-columns: repeat(2,1fr);
    }
}