:root {
  --primary: #0F172A;
  --accent: #CBA135;
}

/* Hero */
.hero {
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa');
  background-size: cover;
  background-position: center;
}
section {
  scroll-margin-top: 80px;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
}

/* Navbar mobile menu */
#mobileMenu {
  background: var(--primary);
  color: white;
}

/* About + Footer */
#about,
footer {
  background: var(--primary);
}

/* Button */
.btn-accent {
  background: var(--accent);
  color: black;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-accent:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Cards */
.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.property-card:hover {
  transform: scale(1.05);
}

/* Form */
input, textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  padding: 12px;
  border-radius: 6px;
}

form {
  background: white;
  padding: 24px;
  border-radius: 12px;
}