/* ===================== ROOT VARIABLES ===================== */
:root {
    --bg: #0a0b0a;
    --gold: #c5a059;
    --text: #e8e2db;
    --card: #141614;
    --serif: 'Playfair Display', serif;
}

/* ===================== GLOBAL RESET ===================== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter', sans-serif; background:var(--bg); color:var(--text); overflow-x:hidden; cursor: none !important; }

/* ===================== CUSTOM CURSOR ===================== */
#cursor {
    width:20px; height:20px; border-radius:50%; background:var(--gold);
    position:fixed; top:0; left:0; pointer-events:none; z-index:99999;
    box-shadow:0 0 15px var(--gold);
    transition: transform 0.1s ease-out;
}
.cursor-hover { transform:scale(3); background:rgba(197,160,89,0.3) !important; border:1px solid var(--gold); }

/* ===================== NAVBAR ===================== */
nav {
    position:fixed; top:0; width:100%; display:flex; justify-content:space-between; align-items:center;
    padding:2rem 5%; background:#0a0b0a; z-index:2000; transition:transform 0.4s ease;
}
nav.hidden { transform:translateY(-100%); }

.logo { font-family:var(--serif); font-size:1.5rem; color:var(--text); }

.nav-links-desktop { display:flex; gap:40px; list-style:none; }
.nav-links-desktop a { color:var(--text); text-decoration:none; font-size:0.8rem; letter-spacing:2px; text-transform:uppercase; transition:0.3s; }
.nav-links-desktop a:hover { color:var(--gold); }

/* ===================== MOBILE MENU ===================== */
.menu-btn {
    display:none; width:32px; height:24px; flex-direction:column; justify-content:space-between;
    position:fixed; top:24px; right:24px;z-index: 100000;; cursor:none !important;;
}
.menu-btn span { display:block; height:3px; width:100%; background:var(--gold); border-radius:2px; transition:all 0.4s ease; }
.menu-btn.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.menu-btn.open span:nth-child(2) { opacity:0; }
.menu-btn.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-drawer {
    position:fixed; top:0; right:0; width:70%; height:100vh; background:#0a0b0a; z-index:9990;
    display:flex; flex-direction:column; justify-content:center; padding-left:10%;
    transform:translateX(100%); transition:transform 0.5s ease;
}
.mobile-drawer.active { transform:translateX(0); }
.drawer-links { display:flex; flex-direction:column; gap:30px; }
.drawer-links a { font-family:var(--serif); font-size:2rem; color:var(--text); text-decoration:none; }

@media(max-width:992px){ .menu-btn { display:flex; } .nav-links-desktop{display:none;} }

/* ===================== HERO ===================== */
.hero { min-height:100vh; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; }
.hero h1 { font-family:var(--serif); font-size:clamp(3rem,12vw,10rem); line-height:0.8; overflow:hidden; }
.hero h1 span { display:block; }
.hero-subtitle { margin-top:2rem; display:flex; flex-direction:column; align-items:center; gap:1.4rem; text-align:center; }
.subtitle-text { font-family:var(--serif); font-size:1.15rem; font-weight:400; letter-spacing:1.5px; opacity:0.9; }
.gold-line { width:90px; height:1.5px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.price-text { font-family:'Inter',sans-serif; font-size:0.9rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); }

/* ===================== STORY BLOCKS ===================== */
.story-block { display:flex; align-items:center; padding:100px 10%; gap:10%; }
.story-block.reverse { flex-direction:row-reverse; }
.story-img { flex:1; height:600px; overflow:hidden; }
.story-img img { width:100%; height:100%; object-fit:cover; }
.story-text { flex:1; }
.story-text h2 { font-family:var(--serif); font-size:clamp(2rem,5vw,4rem); margin-bottom:2rem; }
.story-text p { font-size:1.1rem; line-height:1.8; opacity:0.8; }
.btn-luxury {
padding: 1rem 2rem;
text-decoration: none;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 2px;
transition: 0.4s;
display: inline-block;
border: 1px solid var(--gold);
cursor: pointer;
color: white;
margin-top: 50px;
}


/* ===================== RESPONSIVE ===================== */
@media(max-width:768px){
    .story-block,.story-block.reverse{flex-direction:column;padding:50px 5%;}
    .story-img{height:350px;margin-bottom:2rem;}
    .mobile-drawer{width:85%;}
}


.plots-section {
  padding: 80px 5%;
  background: #000;
}

.plots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* PLOT CARD */
.plot-card {
  background: #fff;
  border: 1px solid #111;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px;
  transition: transform 0.3s ease;
}

.plot-card:hover {
  transform: translateY(-6px);
}


/* IMAGE WRAPPER */
.plot-images {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border: 1px solid #000;
}

.plot-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}

.plot-images img.active {
  opacity: 1;
  z-index: 1;
}


/* DETAILS SECTION */
.plot-details {
  padding: 8px 20px 14px;
  text-align: left;
}

.plot-details h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--gold);
}

.plot-details p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.plot-details p b{
  color: var(--gold);
}

.plot-details p i {
  color: var(--gold);
}
.plot-details p span {
  font-weight: 500;
  color: #111;
}

.plot-details .price {
  margin-top: 12px;
  margin-bottom: 0px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}


.plot-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 3px;
  height: 60px;
  background: var(--gold);
}


/* Mobile */
@media (max-width: 900px) {
  .plots-row {
    grid-template-columns: 1fr;
  }
}


/* PLOTS SECTION SPACING FIX */
.plots-section {
  padding-top: 100px;
}

/* =========================
   ACTIVE NAV LINK (GOLD)
========================= */

.page-home nav a[href="index.html"],
.page-plots nav a[href="plots.html"],
.page-why nav a[href="why-us.html"],
.page-contact nav a[href="contact.html"] {
  color: #c9a24d; /* luxury gold */
}

nav a {
  transition: color 0.3s ease;
}

/* DOT CONTAINER */


.dark-page {
  background:#000;
  color:#fff;
}

.page-header {
  padding:120px 0 60px;
  text-align:center;
}

.page-header h1 {
  font-size:48px;
  letter-spacing:1px;
}

.plots-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  padding:0 80px 120px;
}

.plot-card {
  background:#171717;
  color:#000;
  border:1px solid #000;
  padding:20px;
  position:relative;
  overflow:hidden;
}

.plot-slider {
  position:relative;
}

.plot-images {
  position:relative;
  height:220px;
}

.plot-images img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .4s ease;
  border:1px solid #000;
  padding:6px;
  background:var(--gold);
}

.plot-images img.active {
  opacity:1;
}

.arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#000;
  color:#fff;
  border:none;
  width:34px;
  height:34px;
  cursor:none !important;;
  z-index:2;
}

.arrow.left { left:10px; }
.arrow.right { right:10px; }

.plot-dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}

.plot-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(0, 0, 0, 1);
  transition: background 0.3s ease;
  transform: 0.3s ease;
}

.dot.active {
  background:#c9a24d;
  transform: scale(1.2);
}

.plot-details h3 {
  margin-bottom:8px;
}

.plot-details .price {
  font-weight:600;
}

/* Responsive */
@media(max-width:900px){
  .plots-grid { grid-template-columns:1fr; padding:0 24px 80px; }
}


.price-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row .price {
  font-size: 18px;
  font-weight: 600;
  color:var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 10px;  
}

.enquiry-btn {
  margin-left: auto;
  padding: 8px 16px;

  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  background: var(--gold);     /* filled gold */
  border: 1px solid var(--gold);
  color: #0a0b0a;              /* dark text for contrast */

  border-radius: 20px;
  cursor:none !important;;
}

.plots_subtitle-text {
 font-family:'Inter',sans-serif;
 font-size:0.9rem;
 letter-spacing:2.5px;
 text-transform:uppercase;
 color:var(--gold);
 margin-top: 14px;
 line-height: 20px;


}

#cursor{
    pointer-events: none;
}

input, textarea, button, a {
   cursor: none !important;
}

img, a, p, h1, h2, h3, span {
   cursor: none !important;
}


/* ================= FOOTER ================= */

.site-footer{
    background: #0a0b0a; /* same as your theme */
    border-top: 1px solid rgba(197,160,89,0.25); /* subtle gold line */
    padding: 28px 5%;
}

.footer-container{
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.site-footer p{
    color: #c5a059; /* gold */
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}



/* ========== WHY SECTION ========== */

.why-section {
    padding: 120px 8%;
    background: #0f0f0f;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.section-header p {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 100px 8%;
}

.why-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 40px 30px;
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.why-card .icon {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.enquiry-btn_postpage {
  text-decoration: none;
  color: inherit;
}