@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/* Font Family Jost */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Marcellus&display=swap');

* {
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'jost', 'sans-serif';
}

h1,
h2,
h3,
h5,
span {
    font-family: 'Marcellus', serif;
}

:root {
    --white-stoke: #fff;
    --primary-color: #ab8965;
    --pg-Color: #606060;
    --title-color: #181818;
}

.btn {
    height: 40px;
    width: 150px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--white-stoke);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
    position: relative;
    transition: .6s;
}

.btn:hover {
    background-color: var(--primary-color);
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 120px 20%;
    gap: 100px;
    position: relative;
}

.section_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.section_title span {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: .8rem;
}

.section_title h2 {
    font-size: 3rem;
    font-weight: 500;
}

/* Sticky */
.sticky{
    background-color: var(--title-color);
    border-bottom: 1px solid var(--primary-color);
}

/* Navbar  */
.Navbar {
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.logo {
    width: 180px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    padding: 0 20px;
}

.menu li a {
    font-size: 18px;
    padding: 8px;
    color: var(--white-stoke);
    font-weight: 500;
    letter-spacing: 1px;
    transition: .6s;
}

.menu li a:hover {
    color: var(--primary-color);
}

.Nav_Btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

#Toggle {
    color: var(--white-stoke);
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, .35);
    height: 45px;
    width: 45px;
    font-size: 1.5rem;
    color: var(--title-color);
    display: none !important
}


/* HERO SECTION  */
.Hero {
    width: 100%;
    min-height: 100vh;
    background-image: url(image/Herobg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    object-fit: cover;
    flex-direction: column;
    z-index: 1;
}

.Hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.Hero_title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    color: var(--white-stoke);
    padding-top: 4%;
    position: relative;
    z-index: 9 !important;
}

.Hero_title h1 {
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
}

.Hero_title span {
    display: block;
    padding-left: 250px;
}

.Hero_title h1 small {
    display: inline-block;
    font-size: 1rem;
    color: #ffffffbf;
    width: 400px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.Hero_Bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 99;
}

.Hero_Content {
    width: 50%;
    display: flex;
    flex-direction: column;
    color: var(--white-stoke);
}

.Hero_Content p {
    color: #ffffffbf;
    font-size: 18px;
    line-height: 2rem;
    font-weight: 500;
}

.Hero_Content button {
    margin-top: 20px;
    background-color: var(--primary-color);
    border: none;
    font-size: .7rem;
}

.Hero_Image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.Hero_Image img {
    width: 100%;
    border-radius: 50% 50% 0 0;
}

.Counter_Box {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 75%;
    z-index: 99;
    color: var(--white-stoke);
    background-color: var(--title-color);
    height: 150px;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Counter_Box p {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.Counter_Box p span {
    font-size: 3rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--primary-color);
}

.Counter_Box span {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.8rem;
}


/* FEATURES SECTION */
.Feature_Top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Features_Image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Features_Image img {
    width: 100%;
    border-radius: 50% 50% 0 0;
}

.Feature_Content {
    width: 30%;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.Feature_Content span {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: .8rem;
    letter-spacing: 1px;
}

.Feature_Content h2 {
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--title-color);
    padding: 20px;
    font-weight: 600;
}

.Feature_Content p {
    color: var(--title-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Marcellus', serif;
}

.Feature_Content .Icon i {
    color: rgb(255, 196, 0);
}

.Feature_Content h5 {
    height: 30px;
    color: #000000ab;
    margin-top: 8px;
}

.Feature_Bottom {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 30px;
}

.Feature_Items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    border: 1px solid #cccccc;
}

.Item_Image {
    width: 180px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 50% 50% 0 0;
}

.Item_Image img {
    width: 55%;
    object-fit: cover;
}

.Item_Content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--title-color);
}

.Item_Content p {
    color: var(--pg-Color);
}

/* Accomodation SECTION */
.Accomodation {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Accomodation_title {
    background-image: url(image/Herobg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    color: var(--white-stoke);
    z-index: 1;
}

.Accomodation_title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.Accomodation_Main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Accomodation_Col {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Accomodation_Image {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Accomodation_Image img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: top center;
    object-fit: cover;
}

.Accomodation_Content {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 30px 100px;
    background-color: var(--title-color);
    color: var(--white-stoke);
}

.Accomodation_Content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.Accomodation_Content div span {
    font-size: 0.8rem;
    font-family: 'jost', 'sans-serif';

}

.Accomodation_Content p {
    color: #ffffffbf;
}

.Accomodation_Content button {
    margin-top: 20px;
    width: 140px;
    font-size: .7rem;
    background-color: var(--primary-color);
    border: none;
}

/* FACILITES SECTION */
.Facilites_Page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.Facilites_Image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Facilites_Image img {
    width: 100%;
    background-size: cover;
    background-position: center center;
}

.Facilites_Content {
    width: 90%;
    background-color: var(--primary-color);
    color: var(--white-stoke);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap: 30px;
    transform: translateY(-50px);
}

.Number {
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.Number p {
    width: 100%;
    display: flex;
}

.Number p span {
    font-size: 3rem;
    margin-bottom: 12px;
}

#span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* BANNER SECTION */

.Banner {
    width: 100%;
    min-height: 700px;
    background-image: url(image/banner.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.Banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.Banner i {
    font-size: 3rem;
    color: var(--white-stoke);
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    background-color: var(--primary-color);
    transition: .5s;
    animation: Pluse_Anim 2S infinite;
}

@keyframes Pluse_Anim {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, .35);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

/* Blog Section */

.Blog_Wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    place-content: center;
    gap: 30px;
}

.Blog_Card {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    color: var(--white-stoke);
    gap: 20px;
    z-index: 9;
}

.Blog_Card:nth-child(1) {
    background-image: url(image/Blog1.webp);
}

.Blog_Card:nth-child(2) {
    background-image: url(image/Blog2.webp);
}

.Blog_Card:nth-child(3) {
    background-image: url(image/Blog3.webp);
}

.Blog_Card:nth-child(4) {
    background-image: url(image/Blog4.webp);
}

.Blog_Card:nth-child(5) {
    background-image: url(image/Blog5.webp);
}

.Blog_Card:nth-child(6) {
    background-image: url(image/Blog6.webp);
}

.Blog_Card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8352591036414566) 18%, rgba(249, 249, 249, 0) 100%);
    z-index: -1;
}

.Blog_Card h1 {
    font-size: 1.5rem;
    font-weight: 500;
}

.Blog_Card p {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.5;
}

.Blog_Card button {
    font-size: 0.7rem;
    height: 35px;
    width: 130px;
    background-color: var(--primary-color);
    font-weight: 600;
    border: none;
}

/* SOCIAL  SECTION */
.Social {
    width: 100%;
    padding: 120px 0;
    padding-bottom: 0;
}

.Social_Wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.Social_Image {
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.Social_Image img {
    width: 100%;
    transition: .6s;
    height: 100%;
    object-fit: cover;
}

.Social_Image:hover img {
    transform: scale(1.1);
}

#Instagram {
    position: absolute;
    font-size: 2rem;
    color: var(--white-stoke);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .6s;
}

.Social_Image:hover #Instagram {
    opacity: 1;
}


/* FOOTER SECTION */
.Footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 80px 10%;
    place-content: center;
    place-items: center;
    background-color: var(--title-color);
    gap: 50px;
}

.Footer_Col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 16px;
    color: var(--white-stoke);
}

.Footer_Col h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.Footer_Col p {
    width: 60%;
}

.Footer_Col ul li a {
    color: var(--white-stoke);
    font-size: 1rem;
}

.Social_Icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.Social_Icon i {
    color: #ffffffbf;
    height: 32px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% 50% 0 0;
    transition: .6s;
    font-size: 1rem;
}

.Social_Icon i:hover {
    background-color: var(--white-stoke);
    color: #1d1d1d;
}

.Flogo {
    width: 50%;
}

.Flogo img {
    width: 100%;
}

.Footer_Bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--title-color);
    padding: 20px 0px;
    border-top: 1px solid #ab8965b5;
}

.Footer_Bottom p {
    color: var(--white-stoke);
}



@media(max-width:1400px){
    .Navbar{
        padding: 0 14%;
    }
    section{
        padding: 120px 14%;
    }
    .Feature_Bottom{
        grid-template-columns: repeat(2,1fr);
    }
}




@media(max-width:1200px){
    .Navbar{
        padding: 0 10%;
    }
    section{
        padding: 120px 10%;
    }
    .Hero_title h1 {
        font-size: 4rem;
    }
    .Hero_title h1 small{
        font-size: 0.8rem;
    }
    .menu li a {
        font-size: 14px;
        padding: 0px;
    }
    .btn{
        width: 135px;
        font-size: 0.7rem;
    }
    .Facilites_Content p{
        font-size: 0.8rem;
    }
    .Footer_Col p{
        width: 100%;
    }
}




@media(max-width:900px) {
    #Toggle {
        display: block !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .menu {
        position: absolute;
        flex-direction: column;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: var(--primary-color);
        align-items: start;
        transition: .4s;
    }

    .Show_Menu {
        left: 0;
        opacity: 1 !important;
    }

    .menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .35);
        padding: 30px 4%;
    }

    .menu li a:hover {
        color: var(--title-color);
        font-size: 1rem;
    }
    .Navbar{
        padding: 0 8%;
    }
    section{
        padding: 120px 8%;
    }
    .Hero_title h1 {
        font-size: 3rem;
    }
    .Counter_Box{
        left: 62%;
    }
    .Counter_Box p span {
        font-size: 2rem;
    }
    
    .Counter_Box p{
        font-size: 0.8rem;
    } 
    .Feature_Top{
        flex-direction: column;
        gap: 50px;
    }
    .Features_Image{
        width: 100%;
    }
    .Features_Image img{
        width: 60%;
    }
    .Feature_Content{
        width: 100%;
    }
    .Accomodation_Content{
        padding: 30px 40px;
    }
    .Number p span{
        font-size: 2rem;
    }
    .Blog_Wrap{
        grid-template-columns: repeat(2,1fr);
    }
    .Social_Wrap .Social_Image:nth-child(7){
        display: none;
    }
    .Social_Wrap .Social_Image:nth-child(5){
        display: none;
    }
    .Social_Wrap .Social_Image:nth-child(9){
        display: none;
    }
}

@media(max-width:768px){
    .Hero_title h1 small{
        display: none;
    }
    .Hero_title span{
        padding-left: 170px;
    }
    .Hero_Bottom{
        flex-direction: column-reverse;
    }
    .Hero_Content{
        width: 100%;
    }
    .Hero_Image{
        width: 100%;
    }
    .Hero_Image img {
        width: 70%;
    }    
    .Feature_Bottom{
        grid-template-columns: repeat(1,1fr);
    }
    .Feature_Items{
        padding: 40px 20px;
    }
    .Item_Image{
            width: 150px;
    }
    .Item_Image img {
        width: 40%;
    }
    .Facilites_Page{
        flex-direction: column;
    }
    .Facilites_Image{
        width: 100%;
    }
    .Social_Wrap .Social_Image:nth-child(3){
        display: none;
    }
    .Social_Wrap .Social_Image:nth-child(6){
        display: none;
    }
    .Social_Wrap .Social_Image:nth-child(10){
        display: none;
    }
    .Footer{
        grid-template-columns: repeat(2,1fr);
    }
}



@media(max-width:500px){
    .logo img {
        width: 70%;
    }
    .Hero_title span{
        padding-left: 100px;
    }
    .Hero_title h1 {
        font-size: 2.5rem;
    }
    .Counter_Box{
        top: 60%;
        height: 125px;
        width: 160px;
    }
    .Accomodation_Content {
        padding: 20px;
    }
    .Accomodation_Content p{
        font-size: 0.8rem;
    }
    .Blog_Wrap{
        grid-template-columns: repeat(1,1fr);
    }
    .Social_title h2{
        font-size: 2rem;
    }
    .Footer{
        grid-template-columns: repeat(1,1fr);
    }

}
