body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #004d26;
  color: white;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin: 0;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  background: #004d26;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
}

.btn.secondary {
  background: #0077cc;
}

.properties {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.property-card {
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  max-width: 600px;
  margin: 1rem auto;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.property-card img {
  width: 100%;
  display: block;
}

.property-info {
  padding: 1rem;
}

.about-preview {
  background: #eaf7ea;
  text-align: center;
  padding: 2rem 1rem;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.logo-img {
  height: 60px;
  display: block;
}



.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* overlay darkness */
}

.hero .container {
  position: relative;
  z-index: 1;
}


.phone-link {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: #004d26;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 1rem 0;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  align-self: flex-start;
}

.property-card {
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  margin: 1.5rem auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.property-card img {
  width: 100%;
  display: block;
}

.property-info {
  padding: 1rem;
}

.property-info h3 {
  margin-top: 0;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 1rem 0;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

