/* Typography */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #2c8f2d;
}

a {
  color: #2c8f2d;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #1a6f1a;
  text-decoration: none;
}

/* Hero Section */
.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero p.lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.25rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Section Spacing */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Card Styles */
.card {
  border: none;
  transition: transform 0.2s ease;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-title a {
  color: #2c8f2d;
  text-decoration: none;
}

.card-title a:hover {
  text-decoration: underline;
}

/* Contact Section */
form input,
form textarea {
  border-radius: 8px;
  border: 1px solid #ced4da;
}

form input:focus,
form textarea:focus {
  border-color: #2c8f2d;
  box-shadow: 0 0 0 0.2rem rgba(44, 143, 45, 0.25);
}

form button {
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: 600;
}

/* Transparent header initially, solid on scroll */
header.navbar-scroll {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: #2c8f2d;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #1a6f1a;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 0.75rem;
  }
} /* ✅ Added missing closing brace */

/* Footer */
footer {
  background-color: #1f1f1f;
  color: #ccc;
}

footer p {
  margin: 0;
}

footer a {
  color: #9fe09f;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Utilities */
.text-shadow {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Logo + Title Styling */
.site-logo {
  max-height: 50px;
  width: auto;
  border-radius: 8px;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Responsive logo + title adjustments */
@media (max-width: 576px) {
  .site-title {
    font-size: 1.2rem;
  }

  .site-logo {
    max-height: 40px;
  }
}
