body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: white;
  color: #333;
  font-size: 18px;
}

header {
  background: linear-gradient(to right, #c49158, #b57d42);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

header img {
  height: 40px;
  margin-right: 10px;
}

header h1 {
  font-size: 32px;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 5%;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 15px;
}

.hero-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 25px;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-buttons button,
.hero-buttons a {
  background-color: #c49158;
  border: none;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  text-align: center;
}

.hero img {
  max-width: 350px;
  height: auto;
  flex-shrink: 0;
}

/* House Section with gradient overlay */
.house {
  position: relative;
}

.house::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px; /* height of top fade */
  background: linear-gradient(to bottom, white, rgba(255,255,255,0));
  z-index: 1;
}

.house::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* height of bottom fade */
  background: linear-gradient(to top, white, rgba(255,255,255,0));
  z-index: 1;
}

.house img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}

/* Reviews Section */
.reviews {
  padding: 50px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 2rem;
}

.reviews h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.review-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: left;
  font-family: 'Inter', Arial, sans-serif;
}

.card h4 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.card p.stars {
  color: #c49158; /* Match buttons */
  font-size: 1.25rem;
  margin-top: 5px;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact label {
  display: none;
}

.contact input,
.contact textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact button {
  background-color: #c49158;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 50px 15%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: 'Inter', Arial, sans-serif;
}

footer > div {
  flex: 1;
  min-width: 280px;
  margin-bottom: 20px;
}

footer h4 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}

footer p {
  font-size: 1.125rem;
  margin: 4px 0;
}

footer a {
  color: white;
  text-decoration: none;
}

/* Copyright */
.copyright {
  background:#222;
  color:white;
  text-align:center;
  padding:10px;
  font-size:14px;
}

.about-me {
  padding: 80px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.about-me-container {
  overflow: auto; /* Clearfix */
}

.about-me-container img {
  float: left;
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 300px;
  height: auto;
}

.about-me-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-me-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 30px;
    background: linear-gradient(to right, #c49158, #b57d42);
    padding: 20px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 30px 30px 30px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100%;
    max-width: 300px;
  }

  .hero img {
    margin-top: 25px;
    max-width: 90%;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  footer > div {
    margin-bottom: 30px;
  }

  .about-me-container {
    text-align: center;
  }

  .about-me-container img {
    float: none;
    margin: 0 auto 30px;
    display: block;
  }
}