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

body {
  font-family: Georgia, serif;
  background-color: #e7cc9a;
  color: #111;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 100px 60px;
  min-height: 100vh;
  gap: 60px;

  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h1 {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

.hero-left em {
  font-style: italic;
  color: #f3f0e9;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 10px solid white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-left h1 {
    font-size: 2.6rem;
  }

  .hero-right img {
    width: 90%;
  }
}
.hero-label {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #cccccc; /* softer gray, not too harsh */
  margin-bottom: 25px;
  text-transform: uppercase;
}

.vision-section {
  background-color: #302331;
  padding: 120px 20px;
  text-align: center;
}

.vision-text p {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #f7f8f5;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

.vision-text .highlight {
  color: #6e5447;
  font-weight: 400;
}

.property-section {
  background-color: #f6f4ef;
  padding: 100px 40px;
  text-align: center;
}

.property-section h2 {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #3a3a3a;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.property-card {
  background-color: #fff;
  border: 1px solid #835858;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 330px;
  text-align: center;
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

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

.property-details {
  padding: 20px;
  font-family: Georgia, serif;
}

.property-details h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.property-details p {
  font-size: 16px;
  color: #555;
  margin: 4px 0;
}

.property-details .price {
  font-size: 18px;
  font-weight: bold;
  color: #8d6b4d;
  margin-top: 10px;
}

.reviews-section {
  background-color: #f8f6f2;
  padding: 60px 20px;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-family: 'Georgia', serif;
  margin-bottom: 40px;
  color: #333;
}

.review-card {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 30px;
  font-family: 'Georgia', serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 20px;
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  color: #7a5c3e;
}

/* Contact Section */
.contact-section {
  background-color: #57524b; 
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.contact-card {
  background-color: white;
  padding: 60px 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(250, 188, 188, 0.863);
  font-family: Georgia, serif;
  text-align: left;
}

.contact-card h2 {
  font-size: 2.8rem;
  color: #2f2f2f;
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #7a5c3e; /* accent line color */
  margin-top: 15px;
  margin-bottom: 30px;
}

.contact-card p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1b0909;
}

.contact-list a {
  color: #25d366;
  text-decoration: none;
}

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

/* Mobile responsive layout */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 15px;
  }

  .contact-card {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-card h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}
