/* Global Styles */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  background-color: #1d5a2f; /* Classic dark green */
  overflow-x: hidden;
}

/* Header */
header {
  background-color: rgba(0,0,0,0.6);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header .logo {
  height: 60px;
  animation: float 4s ease-in-out infinite;
}

/* Float animation for logo */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #a8ff7f; /* Light green hover */
}

/* Hero Section with background image from your logo */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: url('images/logo.png') center/cover no-repeat; /* your logo as background */
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 90, 47, 0.5); /* semi-transparent green overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}


/* Section Styling */
.section {
  padding: 120px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

.section p, .section ul {
  font-size: 18px;
  line-height: 1.6;
  color: #e0f0d9;
}

.section ul {
  list-style: disc;
  padding-left: 20px;
}

.contact-section {
  background-color: #15532b;
  text-align: center;
}

/* Footer */
footer {
  background-color: #0e2c17;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

/* CTA button */
.cta {
  padding: 15px 30px;
  background-color: #ffffff;
  color: #1d5a2f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.cta:hover {
  background-color: #a8ff7f;
  transform: scale(1.05);
}

/* Fade-in active */
.fade-in-section {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
