/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
}

.hero .logo {
  width: 120px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0.2em 0;
}

.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #d4e157;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #689f38;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #558b2f;
}

/* Navbar */
.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 0;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #558b2f;
}

/* Services */
.services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  color: #558b2f;
}

/* About */
.about {
  background-color: #f5f5f5;
  text-align: center;
}

/* Calendar */
.calendar-embed iframe {
  border-radius: 8px;
}

/* Contact */
.contact {
  background-color: #f5f5f5;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-info li {
  margin: 8px 0;
  font-size: 1rem;
}

.contact-info i {
  color: #558b2f;
  margin-right: 10px;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer .social a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer .social a:hover {
  color: #d4e157;
}
