:root {
  --pink: #ff69b4;
  --dark: #1c1c1c;
  --light: #f8f8f8;
  --white: #fff;
  --text: #333;
  --radius: 10px;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

/* NAVIGATION */
nav {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--pink);
}

.rental-nav {
  background: var(--pink);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.rental-nav:hover {
  background: #ff1493;
}

/* HERO */
.hero {
  background: url('https://i.imgur.com/7PqALQx.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  z-index: 1;
  position: relative;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.primary-btn {
  background: var(--pink);
  color: var(--white);
}

.primary-btn:hover {
  background: #ff1493;
}

/* PROPERTIES */
.properties {
  padding: 4rem 2rem;
  background: var(--white);
}

.properties h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.property-card {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-card .info {
  padding: 1rem;
}

.property-card h3 {
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.property-card ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.property-card ul li {
  font-size: 0.95rem;
  color: #555;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 4rem 2rem;
}

.contact h2 {
  color: var(--pink);
  margin-bottom: 1rem;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  nav { flex-direction: column; align-items: flex-start; gap: 1rem; }
}