body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
   font-family: 'Open Sans', sans-serif;

  /* background image + white gradient overlay */
background: 
  linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6)),
  url('/assets/images/trees.jpg') no-repeat center center/cover;
}

.landing-container {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.landing-container h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1rem;
font-family: 'Montserrat', sans-serif;
}

.landing-container p {
  font-size: 1.5rem;
  color: #444;
font-weight: 600;
margin:0px;
}

.landing-container h1, 
.landing-container p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}


@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.landing-container h1 {
  animation: fadeUp 1.2s ease-out forwards;
}

.landing-container p {
  animation: fadeUp 1.5s ease-out forwards;
}
.highlight {
  color: #2e7d32; /* deep eco green */
}
