
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f5f2e7;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Merriweather', serif;
  margin: 0 0 15px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

/* Hero ar overlay */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero h1, .hero p {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.4rem;
  max-width: 700px;
}

/* About */
.about {
  background: #fff;
  max-width: 900px;
  margin: auto;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Roots */
.roots {
  background: linear-gradient(135deg, #e8efe6, #d4e6d2);
  border-top: 4px solid #4a7c59;
}

.roots p {
  max-width: 700px;
  margin: auto;
  font-style: italic;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #4a7c59;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}
