*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}



html{
    scroll-behavior:smooth;
}


body{
     
    background:#f7f7f7;
    color:#222;
}

@media screen and (max-width:768px){
    body{
       padding-bottom:50px;
    }
}

.mainColor{
    background: linear-gradient(90deg, #fadc08, #ff9618);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* NAVBAR */



header{

    position:fixed;
    top:0;
    width:100%;
    height:75px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 5%;
    z-index:999;
    box-shadow:0 3px 15px #0002;

}

@media screen and (min-width:769px) and (max-width:1024px){

    header{
        padding:0 1px;
    }

}

.logo{

    

}



nav{

    display:flex;
    gap:30px;

}


nav a{

    text-decoration:none;
    color:#222;
    font-size:15px;

}


.menu{

    display:none;
    font-size:25px;
    background:none;
    border:0;

}







/* HERO */


.hero{

    height:100vh;
    background:url("/assests/hero-img.jpeg")
    center/cover;

    position:relative;
    display:flex;
    align-items:center;
    padding-left:10%;

}

@media screen and (max-width:430px){
    .hero{
     
    height:100vh;
    background:url("/assests/hero-mobile.jpeg")
    center/cover;

    position:relative;
    display:flex;
    align-items:center;

}
}

.overlay{

position:absolute;
inset:0;
background:linear-gradient(90deg,#000b,#0003);

}



.hero-content{

position:relative;
top:100px;
left:200px;
color:white;
max-width:600px;

}

@media screen and (max-width:430px){
    .hero-content{


top:180px;
left:100px;


}
}

.hero h1{

font-size:60px;
line-height:1.1;

}



.hero p{

font-size:20px;
margin:25px 0;

}


.submitBtn{

background:#fca503;
color:white;
border:0;
padding:14px 30px;
border-radius:2px;
cursor:pointer;
font-size: 1rem;
}

button{

background:#fca503;
color:white;
border:0;
padding:14px 30px;
border-radius:2px;
cursor:pointer;
font-size: 1rem;
}





/* SECTIONS */


section{

padding:90px 8%;

}


h2{

font-size:40px;
margin-bottom:40px;
text-align:center;

}







.container{

display:flex;
gap:50px;
align-items:center;

}



.text{

flex:1;

}


.text p{

font-size:18px;
line-height:1.8;

}



.image{

flex:1;

}



.image img{

width:100%;
border-radius:20px;

}





.stats{

display:flex;
gap:20px;
margin-top:30px;

}



.stats div{

background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px #0001;
text-align:center;

}






/* HIGHLIGHTS */


.highlights{

background:white;

}


.cards{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}


.card{

background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px #0002;
transition:.3s;

}



.card:hover{

transform:translateY(-10px);

}




/* HIGHLIGHTS */


.pricing{

/*background:white;*/

}


.pricing .cards{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}


.pricing .card{
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px #0002;
transition:.3s;

}



.pricing .card:hover{

transform:translateY(-10px);

}


/* AMENITIES */


.amenity-grid{

display:grid;
grid-template-columns:repeat(6,1fr);
gap:25px;

}


.amenity-grid div{

background:white;
padding:40px 20px;
border-radius:20px;
text-align:center;
font-size:40px;
box-shadow:0 5px 20px #0001;

}


.amenity-grid h3{

font-size:18px;
margin-top:15px;

}






/* GALLERY */


.gallery{

background:#111;
color:white;
text-align:center;

}


.gallery-box img{

width:80%;
max-height:500px;
object-fit:cover;
border-radius:20px;

}


.gallery-buttons{

margin-top:25px;

}



.gallery-buttons button{

margin:10px;

}






/* LOCATION */


.location{

text-align:center;

}

.location .container{
    display: flex;
    justify-content: space-between;
    
    
}

.location .container .left{
    width: 100%;
    text-align: start;
    
    
}

.location .container .left p{
margin-bottom: 15px;
border:0.5px solid lightgray;
padding:5px 10px;
}
.location .container .right{
    width: 100%;
    
}

.location .container .right iframe{

width:100%;
height:400px;
border:0;
border-radius:20px;

}





/* FAQ */


.faq-item{

background:white;
margin:15px 0;
border-radius:15px;
overflow:hidden;

}


.faq-item button{

width:100%;
text-align:left;
border-radius:0;
background:#fff;
color:#222;
font-size:18px;

}


.faq-item p{

display:none;
padding:20px;

}







/* CONTACT */


.contact{

text-align:center;
background:#000;
color:white;

}



.contact h2{

color:white;

}





/* POPUP */


.popup{

position:fixed;
inset:0;
background:#0008;
display:none;
justify-content:center;
align-items:center;
z-index:1000;

}



.form{

background:white;
padding:35px;
width:350px;
border-radius:20px;
position:relative;

}



.form span{

position:absolute;
right:20px;
font-size:25px;
cursor:pointer;

}



.form input{

width:100%;
padding:15px;
margin:10px 0;
border:1px solid #ddd;
border-radius:10px;

}






/* WHATSAPP */


.whatsapp{
display: flex;
flex-direction: column;
gap:5px;
position:fixed;
right:45px;
bottom:150px;

text-decoration:none;
z-index:99;
color: inherit;
}

.whatsapp span{
    
    padding:1px 10px;
    border: 0.3px solid black;
}







/* RESPONSIVE */


@media(max-width:900px){


nav{

display:none;

}


.menu{
color:#000;
display:block;

}



.container{

flex-direction:column;

}

.pricing .cards{
   grid-template-columns:1fr; 
}

.cards{

grid-template-columns:1fr;

}


.amenity-grid{

grid-template-columns:1fr 1fr;

}


.hero h1{

font-size:42px;

}


}



@media(max-width:600px){


section{

padding:70px 5%;

}


.amenity-grid{

grid-template-columns:1fr;

}


.stats{

flex-direction:column;

}


.hero{

padding-left:5%;

}


.hero h1{

font-size:35px;

}

}

.bottomButtons{
    display:none;
}


/* Only Mobile */
@media(max-width:768px){
.whatsapp{
    display: none;
}
.bottomButtons{
   
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 -5px 20px rgba(0,0,0,0.15);
   padding:20px 0;

}


.bottom-container{

    display:flex;
    width:100%;
    justify-content: space-around;
}





.bottom-container a{

    text-decoration:none;
    color:white;
    font-size:16px;
    font-weight:600;
    display:block;

}


.call{
     padding: 15px 25px;
    background:#000;
    color:#fff;
    border-radius: 10px;

}


.whatsappp{

     padding: 15px 25px;
    background:#000;
    color:#fff;
    border-radius: 10px;

}
}


.footer{
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}