
/*UNIVERSAL CODE */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}


/* ===== NAVBAR ===== */
 .site-nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 40px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); position: relative; top: 0; left: 0; flex-wrap: wrap; border-radius: 4px; z-index: 1000; width: 100%; color: black; box-sizing: border-box; }
.nav-left { display: flex; align-items: center; gap: 10px; } 
.logo { font-size: 26px; font-weight: 600; color: #000; } 
#logo { text-decoration: none; } 
.logo span { color: #1e3a8a; } 
.center { display: flex; gap: 40px; }
.center p{ margin: 0; cursor: pointer; color: #333; text-decoration: none; }
.center .nav-link{ margin: 0; cursor: pointer; position: relative; padding-bottom: 5px; } 
.center .nav-link::after{ content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #cfcfcf; transition: width 0.25s ease; } /* hover */ 
.center .nav-link:hover::after{ width: 100%; } /* active page */
.center .nav-link.active::after{ width: 100%; } 
.nav-links { list-style: none; gap: 25px; margin: 0; padding: 0; }
.nav-links a { color: #111; text-decoration: none; padding: 6px 12px; transition: color 0.3s ease; }
.nav-links.active { display: flex; flex-direction: column; background: #ffffff; position: absolute; top: 100%; left: 0; width: 100%; padding: 20px; z-index: 1000; }

#welcome {
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-left: 420px;
}




.properties-section {
  padding: 80px 6%;
  background-color: #0b0f1a;

  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.properties-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px; /* Size of the 'blueprint' grid */
  pointer-events: none;
}
.properties-section h2 {
  font-size: 2.2rem;
  margin-bottom: 70px;
  color: #fff;
  text-align: center;
}

/* ===============================
   GRID LAYOUT
================================ */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

/* ===============================
   PROPERTY CARD
================================ */

.property-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(5px);

  transition: all 0.4s ease;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 242,255, 0.15);
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===============================
   BADGE
================================ */

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: #00f2ff;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.card-badge.demo {
  background: #64748b;
  color: #fff;
}

/* ===============================
   IMAGE & WRAPPERS
================================ */
.image-wrapper {
  position: relative;
 aspect-ratio:  4 / 3;
  width: 100%;
  overflow: hidden;
  
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}
.property-card:hover .image-wrapper img {
  scale: 1.1;
  filter: brightness(0.5);
}
/**MOBILE RESPONSIVENESS**/
@media (max-width: 768px) {
  .image-wrapper {
    aspect-ratio: auto; /* 🔥 switch back to natural */
  }

  .image-wrapper img {
    height: auto;
  }
}

.play-overplay {
  position: absolute;
  inset: 0; 
  display: flex ;
  
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Slight dim to make button pop */
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.property-card:hover .play-overlay {
  opacity: 1;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(0, 242, 255, 0.3);
  border: 2px solid #00f2ff;
  border-radius: 50%;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}
.play-btn::after {
  content: '';
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #00f2ff;
}
#enter{
 color: #FFFFFF;
}

.play-overlay span {
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.play-overlay:hover .play-btn {
  scale: 1.1;
  background: rgba(0, 242, 255, 0.3);
}
/* ===============================
   CONTENT
================================ */
.property-content {
  padding: 20px;
  color: #fff;
}


.property-card h3 {
  font-size: 1.2rem;
  color: #111;
 
}
/* ===============================
   LOCATION
================================ */
/* Location */
.location-text {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 20px;
}
/* ===============================
   FEATURES
================================ */
.tech-specs {
  display: flex;
  gap: 15px;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.03);
  padding-top: 20px 10px;
}

.tech-specs span {
  font-size: 14px;
  font-weight: bold;
  color: #00f2ff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tech-specs i {
  font-size: 16px;
}
.locked {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1 !important;
}

.locked i {
  color: #64748b;
  font-size: 24px;
  margin-bottom: 10px;
}

