/* RESET */


/* GLOBAL RESET */
@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/OPTIMA.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/Optima_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/OPTIMA_B.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/Optima_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: 'Lato', 'Open Sans', sans-serif;
background:#000;
}

h1, h2, h3{
font-family:"OptimaCustom", sans-serif;
font-weight: 400;
}

/* HERO */
.explore-hero{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
margin-top:80px;
}

.explore-img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;

display:flex;
align-items:center;
justify-content:space-between;

padding:10px 60px;
height:80px;

z-index:1000;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
}

/* LOGO */

.logo-img{
height:160px;
position:absolute;
top:-40px;   /* logo upar shift ho jayega */
left:60px;
}

/* CENTER NAV */

.nav-center ul{
display:flex;
gap:40px;
list-style:none;
margin-left: 160px;
}

.nav-center a{
text-decoration:none;
color:white;
font-size:14px;
letter-spacing:1px;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:35px;
left:0;

background:white;
padding:15px 20px;

display:flex;
flex-direction:column;
gap:10px;

opacity:0;
visibility:hidden;

transition:0.3s;
}

.dropdown:hover .dropdown-menu{
opacity:1;
visibility:visible;
}

/* RIGHT SECTION */

.nav-right{
display:flex;
align-items:center;
gap:20px;
width:330px;          /* fix width */
justify-content:flex-end;
}

/* PHONE */

.phone-link{
display:flex;
align-items:center;
color:#c7a386;
text-decoration:none;
position:relative;
overflow:hidden;
}

.phone-link i{
font-size:16px;
}

/* hidden text */

.phone-text{
max-width:0;
overflow:hidden;
white-space:nowrap;
margin-left:0;
font-size:13px;
transition:max-width .35s ease, margin .35s ease;
}

/* hover */

.phone-link:hover .phone-text{
max-width:140px;
margin-left:8px;
}

/* WHATSAPP */

.whatsapp{
display:flex;
align-items:center;
color:#c7a386;
text-decoration:none;
position:relative;
overflow:hidden;
}

.whatsapp i{
font-size:18px;
}

.whatsapp-text{
max-width:0;
overflow:hidden;
white-space:nowrap;
margin-left:0;
font-size:13px;
transition:max-width .35s ease, margin .35s ease;
}

.whatsapp:hover .whatsapp-text{
max-width:120px;
margin-left:8px;
}

/* BUTTON */

.visit-btn{
background:#c7a386;
border:none;
padding:10px 18px;
border-radius:4px;
cursor:pointer;
}


/* WELCOME STRIP */

.welcome-strip{
text-align:center;
padding:25px 10px;
background:linear-gradient(90deg,#4b0055,#8a004f,#4b0055);
color:white;
}

.welcome-strip h2{
font-size:28px;
margin-bottom:5px;
font-weight:500;
}

.welcome-strip p{
font-size:16px;
opacity:0.9;
}


/* CASA SECTION */

.casa-section{
background:#0a0a0a;
padding:80px 60px;
text-align:center;
color:white;
}

.casa-title{
color:#d5b46b;
font-size:36px;
margin-bottom:60px;
letter-spacing:1px;
}


/* GRID */

.casa-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:50px;
justify-items:center;
}

/* ITEMS */

.casa-item{
text-align:center;
max-width:180px;
}

.casa-item i{
font-size:32px;
border:2px dashed #777;
border-radius:50%;
padding:18px;
margin-bottom:15px;
color:white;
}

.casa-item h3{
font-size:22px;
margin-bottom:6px;
}

.casa-item p{
font-size:13px;
color:#aaa;
letter-spacing:1px;
}


/* RESPONSIVE */

@media(max-width:1100px){

.casa-grid{
grid-template-columns:repeat(3,1fr);
gap:40px;
}

}

@media(max-width:700px){

.casa-grid{
grid-template-columns:repeat(2,1fr);
}

.welcome-strip h2{
font-size:22px;
}

}

/* OVERVIEW SECTION */

.overview-section{
background:#f2f2f2;
padding:100px 80px;
}

/* container */

.overview-container{
max-width:1350px;
margin:auto;
display:flex;
gap:80px;
align-items:flex-start;
}

/* LEFT SIDE */

.overview-left{
flex:1;
max-width:600px;
}

.overview-label{
font-size:13px;
letter-spacing:3px;
color:#777;
display:inline-block;
margin-bottom:20px;
position:relative;
}

.overview-label::after{
content:"";
width:70px;
height:2px;
background:#888;
display:block;
margin-top:10px;
}

/* heading */

.overview-heading{
font-size:34px;
line-height:1.1;
margin-bottom:30px;
font-family:serif;
color:#333;
}

/* text */

.overview-left p{
font-size:14px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}


/* RIGHT IMAGE */

.overview-right{
flex:1;
}

.overview-right img{
width:100%;
height:540px;
object-fit:cover;
border-radius:6px;
}


/* responsive */

@media(max-width:900px){

.overview-container{
flex-direction:column;
gap:40px;
}

.overview-heading{
font-size:36px;
}

.overview-right img{
height:400px;
}

}


/* AMENITIES SECTION */

.amenities-section{
background:#f2f2f2;
padding:100px 80px;
}

/* HEADER */

.amenities-header{
text-align:center;
margin-bottom:70px;
}

.amenities-line{
width:80px;
height:2px;
background:#888;
margin:0 auto 20px auto;
}

.amenities-header h2{
font-size:44px;
letter-spacing:1px;
color:#333;
font-family:serif;
}


/* GRID */

.amenities-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px 80px;
max-width:1200px;
margin:auto;
}


/* ITEM */

.amenity{
display:flex;
align-items:center;
gap:15px;
font-size:15px;
letter-spacing:0.5px;
color:#444;
}

/* ICON */

.amenity i{
font-size:22px;
color:#c7a386;
min-width:24px;
}


/* PROJECT GALLERY */

.project-gallery{
background:#f3f3f3;
padding:90px 60px;
text-align:center;
}

.gallery-header h2{
font-size:40px;
font-family:serif;
margin-bottom:20px;
}

.gallery-line{
width:80%;
height:1px;
background:#bbb;
margin:0 auto 30px auto;
}

/* tabs */

.gallery-tabs{
font-size:18px;
margin-bottom:40px;
}

.gallery-tabs .tab{
cursor:pointer;
margin:0 10px;
}

.gallery-tabs .active{
color:#c7a386;
}

/* gallery */

.gallery-wrapper{
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.gallery-images{
display:flex;
gap:30px;
}

.gallery-images img{
width:420px;
height:280px;
object-fit:cover;
border-radius:4px;
}

/* arrows */

.gallery-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border:none;
font-size:25px;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.gallery-arrow.left{
left:-20px;
}

.gallery-arrow.right{
right:-20px;
}


/* FAQ SECTION */

.faq-section{
background:#f3f3f3;
padding:100px 60px;
}

.faq-container{
max-width:1200px;
margin:auto;
background:white;
padding:70px;
border-radius:20px;
text-align:center;
}

.faq-label{
color:#2563eb;
font-size:14px;
}

.faq-container h2{
font-size:42px;
margin:10px 0;
}

.faq-desc{
color:#777;
margin-bottom:50px;
}

/* GRID */

.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px 40px;
}

/* ITEM */

.faq-item{
text-align:left;
}

/* QUESTION */

.faq-question{
background:#f1f1f1;
padding:16px 20px;
border-radius:10px;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
font-size:15px;
}

/* ANSWER */

.faq-answer{
display:none;
padding:15px 20px;
color:#666;
font-size:14px;
}

/* ICON */

.faq-icon{
font-size:20px;
}



/* CTA SECTION */

.cta-section{
position:relative;
height:85vh;
background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

/* DARK OVERLAY */

.cta-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

/* CONTENT */

.cta-content{
position:relative;
color:white;
max-width:650px;
padding:20px;
}

.cta-content h2{
font-size:60px;
font-weight:500;
line-height:1.2;
margin-bottom:20px;
}

.cta-content p{
font-size:18px;
color:#ddd;
margin-bottom:25px;
}

/* BUTTON */

.cta-btn{
background:white;
color:black;
border:none;
padding:10px 22px;
border-radius:6px;
font-size:14px;
cursor:pointer;
transition:0.3s;
}

.cta-btn:hover{
background:#c7a386;
color:white;
}

/* ==============================
   FOOTER
================================ */

.footer{
background:#f3f3f3;
padding:80px 60px 30px;
color:#b8893c;
}

/* container */

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:60px;
max-width:1400px;
margin:auto;
}

/* column */

.footer-col h3{
font-size:18px;
margin-bottom:20px;
}

.footer-title{
font-size:30px;
margin-bottom:20px;
}

.footer-text{
font-size:14px;
line-height:1.8;
max-width:320px;
}

/* list */

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
font-size:14px;
cursor:pointer;
transition:0.3s;
}

.footer-col ul li:hover{
color:#000;
}

/* contact text */

.footer-col p{
font-size:14px;
line-height:1.7;
margin-bottom:8px;
}

/* divider */

.footer-divider{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
margin:70px 0 30px;
}

.footer-divider .line{
flex:1;
height:1px;
background:#ddd;
}

.footer-logo img{
width:70px;
}

/* bottom */

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.copyright{
font-size:14px;
}

.footer-social{
display:flex;
gap:20px;
font-size:18px;
cursor:pointer;
}

.footer-social i{
transition:0.3s;
}

.footer-social i:hover{
color:#000;
transform:translateY(-3px);
}

/* ==============================
   TABLET
================================ */

@media (max-width:1024px){

.footer{
padding:70px 40px 30px;
}

.footer-container{
grid-template-columns:1fr 1fr;
gap:40px;
}

.footer-text{
max-width:100%;
}

}

/* ==============================
   MOBILE
================================ */

@media (max-width:768px){

.footer{
padding:60px 25px 30px;
}

.footer-container{
grid-template-columns:1fr;
gap:35px;
}

.footer-title{
font-size:26px;
}

.footer-col h3{
font-size:17px;
}

.footer-text{
font-size:14px;
}

.footer-divider{
margin:50px 0 25px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-social{
justify-content:center;
}

}

/* ==============================
   SMALL MOBILE
================================ */

@media (max-width:480px){

.footer{
padding:50px 20px 25px;
}

.footer-title{
font-size:24px;
}

.footer-text{
font-size:13px;
}

.footer-col ul li{
font-size:13px;
}

.copyright{
font-size:13px;
}

}


@media (max-width:900px){

.navbar{
padding:10px 20px;
height:70px;
}

.logo-img{
height:110px;
top:-20px;
left:20px;
}

.nav-center{
display:none;
}

.nav-right{
gap:12px;
}

.visit-btn{
padding:8px 14px;
font-size:12px;
}

}


@media (max-width:1100px){

.amenities-grid{
grid-template-columns:repeat(3,1fr);
gap:30px;
}

}

@media (max-width:768px){

.amenities-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

}

@media (max-width:480px){

.amenities-grid{
grid-template-columns:1fr;
}

}

.gallery-images img{
width:100%;
max-width:420px;
height:260px;
}
.gallery-arrow{
display:none;
}

@media (max-width:900px){

.gallery-images{
flex-direction:column;
align-items:center;
}

.gallery-arrow{
display:none;
}

}

@media (max-width:900px){

.faq-container{
padding:40px 25px;
}

.faq-grid{
grid-template-columns:1fr;
gap:15px;
}

.faq-container h2{
font-size:30px;
}

}

@media (max-width:768px){

.cta-section{
height:60vh;
}

.cta-content h2{
font-size:36px;
}

.cta-content p{
font-size:15px;
}

}

@media (max-width:480px){

.cta-content h2{
font-size:28px;
}

.cta-content p{
font-size:14px;
}

}

@media (max-width:768px){

.casa-section{
padding:60px 20px;
}

.casa-title{
font-size:28px;
}

}

@media (max-width:768px){

.overview-section{
padding:60px 25px;
}

.overview-heading{
font-size:28px;
}

}

/* MOBILE NAVBAR */

.menu-btn{
display:none;
background:none;
border:none;
font-size:22px;
cursor:pointer;
}

/* MOBILE */

@media (max-width:768px){

.navbar{
padding:10px 20px;
height:70px;
background:white;
}

.logo-img{
height:90px;
top:-10px;
left:15px;
}

/* hide desktop icons */

.phone-link,
.whatsapp,
.visit-btn{
display:none;
}

/* show menu button */

.menu-btn{
display:block;
}

/* mobile menu */

.nav-center{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
display:none;
padding:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.nav-center ul{
flex-direction:column;
gap:18px;
margin:0;
}

.nav-center.active{
display:block;
}

}