:root {
  --primary: #3ca374;
  --secondary: #22543d;
  --accent: #b7e778;
  --bg: #f4f9f4;
  --text: #222;
  --white: #fff;
  --leaf: #7ed957;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--white);
  padding-bottom: 2rem;
  background-image: url('https://www.transparenttextures.com/patterns/leaf.png');
  background-repeat: repeat;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5vw 0 5vw;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--leaf);
  text-shadow: 1px 1px 4px #22543d44;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  text-align: center;
  margin: 3rem 0 0 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #174c2a; /* Darker green */
  text-shadow: 2px 2px 8px #174c2a33;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #174c2a; /* Darker green */
  font-weight: 600;
  text-shadow: 1px 1px 6px #174c2a22;
}

.cta-btn {
  background: var(--accent);
  color: var(--secondary);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px #3ca37433;
}

.cta-btn:hover {
  background: #a3e635;
}

main {
  padding: 2rem 5vw;
}

.about, .features, .contact {
  margin-bottom: 3rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  padding: 2rem;
}

.about h2, .features h2, .contact h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.feature-card {
  flex: 1 1 200px;
  background: var(--bg);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px #3ca37422;
  text-align: center;
  border-left: 6px solid var(--leaf);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}

.contact button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.contact button:hover {
  background: var(--secondary);
}

footer {
  text-align: center;
  padding: 1.5rem 0;
  background: var(--secondary);
  color: var(--white);
  margin-top: 2rem;
  border-radius: 12px 12px 0 0;
  font-size: 1rem;
  letter-spacing: 1px;
}

.quick-links {
  margin: 2rem 0;
  text-align: center;
}
.quick-links h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.quick-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.quick-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px #3ca37422;
  padding: 1.2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.quick-card span {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.quick-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 4px 16px #3ca37433;
  background: var(--accent);
  color: var(--secondary);
}

.about-preview, .events-preview, .gallery-preview {
  margin-bottom: 2.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  padding: 2rem;
}
.about-preview h2, .events-preview h2, .gallery-preview h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.cta-btn.small {
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem;
  margin-top: 1rem;
}

.events-preview ul {
  margin: 1rem 0 0 1.2rem;
  text-align: left;
}
.gallery-grid {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  justify-content: center;
}
.gallery-grid img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px #3ca37422;
}

/* Responsive Design */
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    gap: 1rem;
  }
  .quick-grid, .gallery-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 2rem;
  }
  main {
    padding: 1rem 2vw;
  }
  .about, .features, .contact {
    padding: 1rem;
  }
}