/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f8fafc;
  color: #111827;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* LANDING PAGE */
.landing {
  height: 100vh;
  background: #1e40ff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landing-logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 140px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.15);
  animation: fadeIn 2s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 37px;
  font-weight: bold;
  color: #1e40ff;
  letter-spacing: 1px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.15);
  margin: 0;
  animation: fadeIn 2s ease;
  user-select: none;
  padding-left: 50px;
}

.navbar nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #2563eb;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO */
.hero {
  position: relative;
  width: 90%;
  max-width: 950px;
  margin: 1.5rem auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  transition: opacity 0.3s ease;
}

.status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(220, 38, 38, 0.95);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
}

.price-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.price-box h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
}

.price-box p {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 2px;
}

/* PROPERTY SUMMARY */
.summary {
  width: 90%;
  max-width: 950px;
  margin: 1rem auto 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.summary h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.key-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.key-stats div {
  text-align: center;
}

.key-stats strong {
  display: block;
  font-size: 1.2rem;
  color: #0f172a;
}

.key-stats span {
  font-size: 0.85rem;
  color: #64748b;
}

/* HIGHLIGHTS SECTION */
.highlights {
  margin-top: 1.2rem;
  background: #f1f5f9;
  padding: 1rem 1.2rem;
  border-radius: 8px;
}

.highlights h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1e293b;
}

.highlights ul {
  list-style: disc;
  margin-left: 1.2rem;
}

.highlights li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #334155;
}

/* NEIGHBORHOOD */
.neighborhood {
  margin-top: 1.5rem;
}

.neighborhood h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1e293b;
}

.neighborhood p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

/* GALLERY */
.gallery-section {
  width: 90%;
  max-width: 950px;
  margin: 0 auto 2rem;
}

.gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 10px 5px;
  scroll-behavior: smooth;
  background: transparent;
}

.gallery-strip::-webkit-scrollbar {
  height: 6px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.thumb {
  border: none;
  background: none;
  cursor: pointer;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease;
}

.thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb.active {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

/* MAP */
.map-section {
  width: 90%;
  max-width: 950px;
  margin: 0 auto 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
}

/* CONTACT */
.contact-section {
  width: 90%;
  max-width: 950px;
  margin: 0 auto 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.agent-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  padding: 1rem 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 26px;
  }

  .hero-img {
    height: 280px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  /* Hide landing zone on mobile */
  .landing {
    display: none !important;
  }
}
