:root {
  --dark: #111;
  --gold: #c6a15b;
  --gray: #666;
  --bg: #fafafa;
}

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

/* Base */
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("https://images.unsplash.com/photo-1560185008-b033106af5c3");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 90px 20px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.tagline {
  color: var(--gold);
  font-weight: 500;
}

.location {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Sections */
.section {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.section p {
  color: var(--gray);
  font-size: 1rem;
}

/* Listings */
.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.listing-card {
  background: white;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.listing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.price {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}

.desc {
  font-size: 0.95rem;
}

/* Contact */
.contact a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}

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

/* Footer */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 25px 15px;
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.75rem;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 1000;
}

/* Desktop Enhancements */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

