/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #2E7D32;
  padding: 15px 0;
}

.logo {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: border-bottom 0.2s ease;
}

nav a.active,
nav a:hover {
  border-bottom: 2px solid #ffffff;
}

/* Page Header */
.page-header {
  background: #f4f4f4;
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  color: #2E7D32;
  font-size: 2rem;
}

/* Hero Section (Homepage) */
.hero {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  color: #2E7D32;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Intro Section */
.intro {
  padding: 40px 0;
  text-align: center;
}

.intro h2 {
  color: #6D4C41;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #2E7D32;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding-bottom: 40px;
}

.service-box {
  border: 2px solid #2E7D32;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-color: #2E7D32;
}

.service-box h3 {
  color: #2E7D32;
  margin-bottom: 10px;
}

/* Contact Page */
.contact-section {
  padding: 40px 0;
}

.contact-section p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info {
  margin-top: 30px;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 1rem;
  color: #333;
}

.contact-info a {
  color: #2E7D32;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Gallery Section (Homepage Visuals) */
.gallery {
  padding: 40px 0;
  text-align: center;
  background-color: #2E7D32;
}

.gallery h2 {
  color: white;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item p {
  margin-top: 10px;
  color: #2E7D32;
  font-weight: bold;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .logo {
    height: 60px;
  }
}
