/* Font style */
.why-title{
  font-family:'DM Serif Display', serif;
  font-size:44px;
  font-weight:500;   /* lighter like hero */
  line-height:1.15;
  margin-bottom:65px;
  letter-spacing:-0.5px;
  color:#3b2a1a;
}

.why-title span{
  color:#a86d2a;
  font-style:italic;   /* THIS creates Dream Property look */
  font-weight:600;
    letter-spacing: .05em;
   /* prevents "Dream Property" from breaking */
}
/* Font style end*/





/* ================= RESET ================= */
/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

/* ================= HERO SECTION ================= */

.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* ================= BACKGROUND IMAGE ================= */

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ================= OVERLAY ================= */

.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(55, 35, 20, 0.75),
    rgba(55, 35, 20, 0.55),
    rgba(55, 35, 20, 0.25)
  );
  z-index: 2;
}

/* ================= HEADER ================= */

.hero-header {
  position: absolute;
  top: 22px;
  left: 70px;
  right: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.hero-logo img {
  height: 70px;
}

/* ================= REGISTER BUTTON ================= */

.register-btn {
  padding: 9px 26px;
  border-radius: 30px;
  background: #E6B87C;
  color: #3a2b1c;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.register-btn:hover {
  background: #D9A35F;
  transform: translateY(-2px);
}

/* ================= HERO CONTENT ================= */

.hero-center {
  position: relative;
  z-index: 5;
  max-width: 950px;
  padding-top: 200px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ================= TITLE ================= */

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gold-shimmer {
  font-style: italic;
  color: #E6B87C;
  letter-spacing: .02em;
    white-space: nowrap;
}

/* ================= SUBTEXT ================= */

.hero-center p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-shadow: 0 3px 10px rgba(0,0,0,.6);
}

/* ================= STATS ================= */

.hero-stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
}

.stat-card {
  background: linear-gradient(
    145deg,
    rgba(166,106,44,.85),
    rgba(124,78,31,.85)
  );
  padding: 24px 18px;
  border-radius: 18px;
  border: 1px solid rgba(230,184,124,.4);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: .35s;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.stat-card i {
  font-size: 26px;
  color: #E6B87C;
  margin-bottom: 12px;
}

.stat-card h3 {
  font-size: 20px;
  color: #fff;
}

.stat-card span {
  font-size: 13px;
  color: #f1f5f9;
}

/* ================= LARGE LAPTOP ================= */

@media (max-width:1200px) {

  .hero-center {
    padding-top: 180px;
  }

  .hero-logo img {
    height: 60px;
  }

}

/* ================= TABLET ================= */

@media (max-width:992px) {

  .hero-header {
    left: 40px;
    right: 40px;
  }

  .hero-center {
    padding-top: 170px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-stats {
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }

}

/* ================= MOBILE ================= */

@media (max-width:600px) {

  .hero-header {
    left: 20px;
    right: 20px;
    top: 15px;
  }

  .hero-logo img {
    height: 42px;
  }

  .register-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .hero-center {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-center p {
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin-top: 35px;
  }

  .stat-card {
    padding: 18px 12px;
  }

  .stat-card h3 {
    font-size: 16px;
  }

  .stat-card span {
    font-size: 11px;
  }

}

/* ================= 320px FIX ================= */

@media (max-width:360px) {

  .hero-center {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-stats {
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 30px;
  }

  .stat-card {
    padding: 12px 8px;
    border-radius: 12px;
  }

  .stat-card i {
    font-size: 16px;
  }

  .stat-card h3 {
    font-size: 14px;
  }

  .stat-card span {
    font-size: 10px;
  }

}

/* ===== 320px HEADER FIX ===== */

@media (max-width:360px){

  .hero-header{
    left:10px;
    right:10px;
  }

}