body {
  margin: 0;
  background-color: #faf9f6;
  color: #4a4a4a;
  font-family: 'Lora', serif;
  overflow-x: hidden;
}

section {
  text-align: center;
  padding: 80px 0;
}

img {
  max-width: 800px;
  width: 90%;
  height: auto;
  margin-bottom: 40px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2e3a1f;
}

p {
  font-size: 1.2 rem;
  line-height: 1.6;
}

nav {
  margin-top: 60px;
}

nav a {
  text-decoration: none;
  color: #2e3a1f;
  font-weight: 600;
  margin: 0 20px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6b8e23;
}

/* Animazioni */
@keyframes zoomFade {
  0% { opacity: 0; transform: scale(0.95); }
  60% { opacity: 1; transform: scale(1.02); }
  100% { transform: scale(1); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.image-animate {
  animation: zoomFade 2.2s ease-out forwards;
}

.title-animate {
  animation: fadeUp 1.4s ease-out forwards;
  animation-delay: 0.8s;
}

.text-animate {
  animation: fadeUp 1.6s ease-out forwards;
  animation-delay: 1.2s;
}
