/*!
 * Project Name: 
 * Author: Tamil Selva
 * Version: 1.0.2
 * Description: Custom CSS for layout, styling, and responsive design.
 * Created: 10 Feb 2026
 * Updated: 11 Feb 2026
 */


 /* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geom", sans-serif;
}

p,
ul,
ol,
li,
a,
span,
button,small,input {
  font-family: "Jost", sans-serif;
}
section{
  scroll-margin-top: 90px;
}
/* Typography */

/* Root Variables */
/* :root {
  --primary-color: #e0d7ce;
  --secondary-color: #147d81;
  --tertiary-color: #ba7e5c;
  --quaternary-color: #fabe75;
  --white-color: #fff;
  --black-color: #000;
} */
/* Root Variables */

/* Custom scroll bar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: black;
}
/* Custom scroll bar */
/* smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ===== NAVBAR BASE ===== */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  /* background:rgba(0,0,0,0.75); */
  backdrop-filter: blur(8px);
  z-index:9999;
  padding:14px 5%;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== LOGO ===== */
.logo{
  height:48px;
}

/* ===== NAV LINKS ===== */
.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-menu ul{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-menu ul li a{
  color:#000000;
  text-decoration:none;
  font-size:20px;
  letter-spacing:.5px;
  transition:.3s;
  font-weight: 400;
}

.nav-menu ul li a:hover{
  color:#d4af37; /* luxury gold */
}

/* ===== ENQUIRY BUTTON ===== */
.enquiry-btn{
  padding:10px 22px;
  background:#d4af37;
  color:#000;
  text-decoration:none;
  border-radius:3px;
  font-weight:600;
  transition:.3s;
}

.enquiry-btn:hover{
  background:#fff;
}

/* ===== HAMBURGER ===== */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:#fff;
  margin:4px 0;
  transition:.4s;
}

/* ===== MOBILE MENU ===== */
@media(max-width: 992px){

  .hamburger{
    display:flex;
  }

  .nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#ebebeb;
    flex-direction:column;
    align-items:flex-start;
    padding:90px 30px;
    transition:.4s;
  }

  .nav-menu.active{
    right:0;
  }

  .nav-menu ul{
    flex-direction:column;
    width:100%;
    gap:18px;
  }

  .nav-menu ul li a{
    font-size:18px;
  }

  .enquiry-btn{
    margin-top:25px;
    width:100%;
    text-align:center;
  }
}

/* close icon */
.menu-close{
  position:absolute;
  top:18px;
  right:22px;
  font-size:32px;
  font-weight:600;
  color:#000;
  cursor:pointer;
  display:none;
}

@media(max-width:992px){
  .menu-close{
    display:block;
  }
}




/* ===== HERO SECTION ===== */
.banner-section{
  position:relative;
  width:100%;
  overflow:hidden;
}

/* DESKTOP IMAGE */
.main-banner{
  width:100%;
  height:100vh;
  object-fit:cover;
  display:block;
}

/* MOBILE IMAGE (hidden on desktop) */
.main-banner-mobile{
  display:none;
  width:100%;
  min-height:100vh;
  object-fit:cover;
}

/* Prevent image drag highlight */
.main-banner,
.main-banner-mobile{
  user-select:none;
  -webkit-user-drag:none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width:768px){

  .main-banner{
    display:none;
  }

  .main-banner-mobile{
    display:block;
    height:92vh; /* leaves space for mobile browser top UI */
  }

}


/* ===== ABOUT SECTION ===== */

.about-section{
  padding:100px 6%;
  background:#ffffff;
}

.about-container{
  max-width:900px;
  margin:auto;
  text-align:left;
}

.section-title{
  font-size:38px;
  font-weight:600;
  margin-bottom:25px;
  color:#111;
  letter-spacing:1px;
}

.about-text{
  font-size:17px;
  line-height:1.8;
  color:#555;
}

@media(max-width:768px){

  .about-section{
    padding:80px 20px;
  }

  .section-title{
    font-size:28px;
  }

  .about-text{
    font-size:15px;
    line-height:1.7;
  }
}

/* SECTION HEIGHT (important) */
.amenities-showcase{
  height:500vh; /* number_of_slides × 100vh (5 slides) */
  position:relative;
  background:#0b0d14;
}

/* sticky viewport */
.amenities-sticky{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
}

/* horizontal track */
.amenities-track{
  display:flex;
  height:100%;
  width:500%;
  transition:transform .1s linear;
}

/* each slide */
.amenity-slide{
  width:100vw;
  height:100vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
  padding-left:8%;
}

/* dark luxury overlay */
.amenity-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.75),
    rgba(0,0,0,.45),
    rgba(0,0,0,.15)
  );
}

/* text */
.amenity-content{
  position:relative;
  color:#fff;
  max-width:500px;
}

.amenity-content h2{
  font-size:52px;
  color:#d4af37;
  margin-bottom:18px;
}

.amenity-content p{
  font-size:18px;
  line-height:1.8;
  color:#e5e7eb;
}

@media(max-width:768px){

  .amenity-content h2{
    font-size:34px;
  }

  .amenity-content p{
    font-size:15px;
  }

  .amenity-slide{
    padding:0 20px;
    align-items:flex-end;
    padding-bottom:80px;
  }

}

/* GALLERY SECTION */

.gallery-section {
  padding: 110px 6%;
  background: #ffffff;
  text-align: center;
}

.section-header > .title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: 1px;
}

.section-header .subtitle{
  color:#666;
  margin-bottom:60px;
}

/* GRID LAYOUT */
.gallery-grid{
  display:grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap:28px;
  align-items:center;
}

/* CARD */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  height:420px;
  transition:all .45s ease;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* CENTER IMAGE EMPHASIS */
.gallery-card.featured{
  height:480px;
  transform: translateY(-20px);
  box-shadow:0 35px 70px rgba(0,0,0,.25);
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

/* HOVER EFFECT */
.gallery-card:hover img{
  transform:scale(1.08);
}

.gallery-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), transparent 65%);
  opacity:0;
  transition:.4s;
}

.gallery-card:hover::after{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:992px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-card,
  .gallery-card.featured{
    height:320px;
    transform:none;
  }
}


/* Floor Plan */
/* ===== FLOORPLAN SECTION ===== */

.floorplan-section{
  padding:110px 6%;
  background:#f6f6f6;
  text-align:center;
}

.floor-sub{
  color:#666;
  margin-top:10px;
  margin-bottom:40px;
  font-size:16px;
}

/* image frame */
.floorplan-wrapper{
  position:relative;
  max-width:900px;
  margin:auto;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
  cursor:pointer;
}

.floorplan-wrapper img{
  width:100%;
  display:block;
  transition:0.4s;
}

.floorplan-wrapper:hover img{
  transform:scale(1.03);
}

/* zoom label */
.zoom-text{
  position:absolute;
  bottom:12px;
  right:12px;
  background:rgba(0,0,0,0.7);
  color:#fff;
  padding:6px 12px;
  font-size:13px;
  border-radius:3px;
}

/* ===== MODAL VIEW ===== */

.floor-modal{
  display:none;
  position:fixed;
  z-index:99999;
  padding-top:60px;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
}

.floor-modal-img{
  margin:auto;
  display:block;
  max-width:92%;
  max-height:85vh;
  animation:zoomIn .3s ease;
}

@keyframes zoomIn{
  from{transform:scale(.7); opacity:0;}
  to{transform:scale(1); opacity:1;}
}

.close-floor{
  position:absolute;
  top:20px;
  right:35px;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

@media(max-width:768px){

  .floorplan-section{
    padding:80px 18px;
  }

  .floor-modal-img{
    max-width:96%;
    max-height:80vh;
  }

  .zoom-text{
    font-size:12px;
  }
}

/* ===== LOCATION SECTION ===== */
/* ===== LOCATION SECTION ===== */

.location-section{
  padding:110px 6%;
  background:#ffffff;
  color:#fff;
}

.location-container{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:60px;
  align-items:center;
}

/* MAP */
.location-map iframe{
  width:100%;
  height:480px;
  border:0;
  border-radius:10px;
  box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* TEXT SIDE */
.location-title{
  font-size:38px;
  margin-bottom:12px;
  color:#ac870d; /* luxury gold */
  letter-spacing:1px;
}

.location-sub{
  color:#bfc3ce;
  margin-bottom:35px;
  line-height:1.7;
}

/* ADVANTAGE GRID */
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* CARDS */
.loc-card{
  background:rgba(19, 19, 19, 0.838);
  padding:18px 20px;
  border-radius:8px;
  border:1px solid rgba(212,175,55,0.25);
  transition:0.35s;
}

.loc-card h4{
  color:#d4af37;
  margin-bottom:10px;
  font-weight:600;
}

.loc-card p{
  color:#d0d3dc;
  font-size:14px;
  margin:4px 0;
}

/* hover luxury effect */
.loc-card:hover{
  transform:translateY(-6px);
  background:rgba(212,175,55,0.08);
  box-shadow:0 20px 45px rgba(0,0,0,0.5);
}

@media (max-width:1024px){

  .location-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .location-map iframe{
    height:420px;
  }

  .location-info{
    text-align:center;
  }

  .location-grid{
    grid-template-columns:1fr 1fr;
  }

}


.footer-container{
  
  text-align: center;
}

.footer-container>small>a{
  color: #8d7422;
  text-decoration: none;
}

footer>.footer-links{
  text-align: center;
  
}

.footer-links>a{
  color: #8d7422;
  text-decoration: none;
}

/* MOBILE STICKY CTA */
.mobile-enquiry-bar{
  display:none;
}

@media(max-width:768px){

  .mobile-enquiry-bar{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#000000;
    padding:1px;
    z-index:99999;
    box-shadow:0 -5px 25px rgba(0,0,0,.4);
  }

  .mobile-enquiry-bar button{
    width:100%;
    padding:14px;
    font-size:16px;
    font-weight:600;
    background:#d4af37;
    color:#000;
    border:none;
    /* border-radius:6px; */
  }

  /* prevent content hidden behind bar */
  body{
    padding-bottom:70px;
  }

}


/* MODAL */
.enquiry-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:999999;
  justify-content:center;
  align-items:center;
}

.enquiry-box{
  background:#fff;
  padding:35px 30px;
  
  
  border-radius:10px;
  position:relative;
  animation:modalIn .3s ease;
}

@keyframes modalIn{
  from{transform:translateY(40px); opacity:0;}
  to{transform:translateY(0); opacity:1;}
}

.close-modal{
  position:absolute;
  right:18px;
  top:12px;
  font-size:26px;
  cursor:pointer;
}

.enquiry-box h3{
  margin-bottom:20px;
  text-align:center;
}




.enquiry-box iframe{
  width:100%;
  height:250px;
  border:0;
  padding: 10px ;
  border-radius:10px;
  /* box-shadow:0 25px 60px rgba(0,0,0,0.6); */
}