:root{
  --bg-dark:#020617;
  --navy:#0a1930;
  --blue:#3b82f6;
  --gold:#d4af37;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Poppins, sans-serif;
  background:var(--bg-dark);
  color:#fff;
}

a{
  text-decoration:none;
  color:#fff;
}

/* ================= HEADER ================= */

header{
  background:#020617;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  min-height:80px;
}

.logo{
  height:64px;              /* visible logo height */
  width:220px;              /* makes logo wider */
  overflow:hidden;          /* hides extra space */
  display:flex;
  align-items:center;
}

.logo img{
  width:220px;              /* force width */
  height:auto;
  margin-top:-2px;        /* THIS removes empty top space */
}
.menu{
  display:flex;
  gap:30px;
  list-style:none;
}

.menu a{
  font-weight:500;
  transition:color .3s;
}

.menu a:hover{
  color:var(--gold);
}

.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  background:#020617;
  padding:15px 24px;
}

.mobile-menu a{
  display:block;
  padding:12px 0;
}

/* ================= HERO SLIDER ================= */

.hero-slider{
  height:55vh;
  min-height:380px;
  position:relative;
}

.hero-slider .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}

.hero-slider .slide.active{
  opacity:1;
}

.hero-content{
  position:absolute;
  inset:0;
  background:rgba(10,25,47,.65);
  padding:40px 30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.hero-content h1{
  font-size:44px;
  line-height:1.2;
  margin-bottom:15px;
}

.hero-content p{
  font-size:16px;
  max-width:520px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-top:25px;
  flex-wrap:wrap;
}

/* ================= BUTTONS ================= */

.btn{
  padding:14px 26px;
  border-radius:12px;
  font-weight:600;
  transition:.3s ease;
}

.primary{
  background:var(--blue);
}

.primary:hover{
  background:#2563eb;
  box-shadow:0 0 0 2px var(--gold);
}

.secondary{
  border:1px solid #fff;
}

.secondary:hover{
  background:rgba(255,255,255,.1);
}

/* ================= COMMON SECTIONS ================= */

.page{
  padding:60px 20px;
  max-width:1100px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
  font-size:30px;
}

/* ================= PROPERTY CARDS ================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#020617;
  border-radius:18px;
  overflow:hidden;
  transition:transform .3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card h3{
  margin:15px;
}

.card p{
  margin:0 15px 10px;
  font-size:14px;
}

.price{
  color:var(--gold);
  font-weight:600;
  margin-bottom:15px;
}

/* ================= FOOTER ================= */

footer{
  background:#020617;
  padding:50px 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:1100px;
  margin:auto;
}

.copy{
  text-align:center;
  margin-top:25px;
  font-size:14px;
  opacity:.7;
}

/* ================= PROPERTY PAGE SLIDER ================= */

.property-gallery{
  padding:60px 20px;
  text-align:center;
}

.property-slider{
  position:relative;
  max-width:1000px;
  margin:auto;
  overflow:hidden;
  border-radius:18px;
}

.property-slides{
  position:relative;
  width:100%;
  height:420px;
}

.property-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.property-slide.active{
  display:block;
}

/* Navigation */
.property-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  font-size:22px;
  padding:10px 14px;
  cursor:pointer;
  border-radius:50%;
  z-index:10;
}

.property-nav.prev{left:14px;}
.property-nav.next{right:14px;}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .menu{display:none;}
  .hamburger{display:block;}

   .logo{
    width:180px;
    height:56px;
  }

  .logo img{
    width:180px;
    margin-top:-2px;
  }

  .hero-content h1{
    font-size:32px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .property-slides{
    height:240px;
  }
}
/* ================= PROPERTY PAGE ENHANCEMENT ================= */

.property-hero {
  height: 55vh;
  background: linear-gradient(
      rgba(2,6,23,0.6),
      rgba(2,6,23,0.85)
    ),
    url("images/lodha1.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.property-hero .overlay {
  padding: 50px 30px;
  max-width: 1100px;
  margin: auto;
}

.property-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.property-hero p {
  font-size: 18px;
  color: #d1d5db;
}

/* Section cards */
.property-details > div {
  background: linear-gradient(
    180deg,
    #0a1930,
    #020617
  );
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

/* Headings */
.property-details h2 {
  font-size: 28px;
  margin-bottom: 18px;
  position: relative;
}

.property-details h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 8px;
  border-radius: 4px;
}

/* Overview text */
.property-overview p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Highlights & Amenities */
.property-highlights ul,
.property-amenities ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

.property-highlights li,
.property-amenities li {
  background: rgba(255,255,255,0.04);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Config cards */
.property-config {
  display: grid;
  gap: 20px;
}

.config-card {
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.12),
    rgba(10,25,48,0.6)
  );
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.25);
}

.config-card h3 {
  margin-bottom: 8px;
}

.config-card p {
  margin: 6px 0;
}

/* Location */
.property-location p {
  line-height: 1.7;
  color: #d1d5db;
}

/* CTA */
.property-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(59,130,246,0.15),
    rgba(2,6,23,0.9)
  );
}

.property-cta .btn {
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 50px;
}

/* Gallery title */
.property-gallery .section-title {
  color: var(--gold);
}

/* Mobile tweaks */
@media(max-width:768px){
  .property-hero h1 {
    font-size: 34px;
  }

  .property-details > div {
    padding: 26px;
  }
}

/* Config cards refinement */
.config-card {
  background: linear-gradient(180deg,#020617,#0a1930);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.config-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
