/* ======== STILURI GENERALE ======== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f6;
  color: #333;
  line-height: 1.7;
}

/* ======== HERO SECTION ======== */
.hero {
  background-image: url("images/plantatie4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .overlay {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-style: italic;
  font-size: 1.3em;
  margin-bottom: 25px;
}

.hero nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.hero nav a:hover,
.hero nav a.active {
  color: #a8d08d;
}

/* ======== SECȚIUNI ======== */
section {
  padding: 60px 10%;
  text-align: center;
}

.intro h2,
.locatie h2 {
  color: #4b772f;
  font-size: 1.9em;
  margin-bottom: 20px;
}

.intro p,
.locatie p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

/* ======== GALERIE ======== */
.galerie {
  background-color: #f1f9f0;
  border-top: 3px solid #a8d08d;
  border-bottom: 3px solid #a8d08d;
}

.galerie h2 {
  color: #4b772f;
  margin-bottom: 25px;
}

.imagini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.imagini img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.imagini img:hover {
  transform: scale(1.05);
}

/* ======== FOOTER ======== */
footer {
  background-color: #7bb661;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 0.95em;
  margin-top: 40px;
}
