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

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("assets/zarla-farm-website-examples-5184x3456-20240519.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark Overlay */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

/* Content */
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary {
  background-color: #2e7d32;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #1b5e20;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background-color: white;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
  }
