/* =========================
   Base Reset & Typography
   ========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #444;
  background-color: #f8fdf6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   Layout Helpers
   ========================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   Header
   ========================= */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6efe1;
}

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

.logo img {
  height: 48px;
}

.main-nav a {
  margin-left: 1.5rem;
  font-weight: 600;
  color: #3e5d30;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* =========================
   Service Hero
   ========================= */

.service-hero {
  background-color: #f8fdf6;
  padding: 4rem 2rem;
  text-align: center;
}

.service-hero-inner {
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.service-hero h1 {
  color: #3e5d30;
  margin: 0;
  font-size: 2.75rem;
  max-width: 800px;
}

.service-hero p {
  color: #444;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0;
}

/* =========================
   Sections
   ========================= */

.service-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.service-section.alt {
  background-color: #f8fdf6;
}

.service-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #3e5d30;
  margin-bottom: 2.5rem;
}

.service-section h3 {
  font-size: 1.25rem;
  color: #3e5d30;
  margin-bottom: 0.75rem;
}

.service-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* =========================
   Lists (Aligned with services)
   ========================= */

.service-list,
.details-list,
.service-section ul {
  padding-left: 1.25rem;
  margin: 0;
}

.service-list li,
.details-list li,
.service-section ul li {
  margin-bottom: 0.75rem;
}

.service-list li::marker,
.details-list li::marker {
  color: #3e5d30;
}

/* =========================
   Features Grid (reuses card feel)
   ========================= */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background-color: #f8fdf6;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e6efe1;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.feature h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: #3e5d30;
  font-size: 1.15rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* Card hover – same philosophy as service cards */
@media (hover: hover) {
  .feature:hover {
    border-color: #3e5d30;
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
}

/* =========================
   Service CTA (ported + adapted)
   ========================= */

.service-cta {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  transition: background-color 0.25s ease;
}

.service-cta .container {
  background-color: #ffffff;
  border-radius: 16px;
  max-width: 950px;
  padding: 2.75rem 2rem;
  margin: 0 auto;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.08);

  transition: background-color 0.25s ease;
}

.service-cta h2 {
  color: #3e5d30;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-cta p {
  color: #444;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* CTA Button – same behaviour as services */
.btn-primary {
  display: inline-block;
  background-color: #3e5d30;
  color: #ffffff;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.cta-note {
  color: #555;
  margin-top: 1rem;
  padding-top: 1rem;
}

/* CTA Hover Logic (copied philosophy) */
@media (hover: hover) {

  .service-cta:hover {
    background-color: #f6f1e7;
  }

  .service-cta:has(.container:hover) {
    background-color: #ffffff;
  }

  .service-cta .container:hover {
    background-color: #f6f1e7;
  }

  .service-cta .container:hover .btn-primary {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  }

  .service-cta .container:hover .btn-primary:hover {
    background-color: #6b4f3a;
    transform: translateY(-6px);
  }
}

/* =========================
   Footer
   ========================= */

.site-footer {
  background-color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #e6efe1;
}

.footer-logo-img {
  height: 48px;
  margin-bottom: 1rem;
}

.site-footer nav a {
  margin: 0 0.8rem;
  font-weight: 600;
  color: #3e5d30;
}

.site-footer p {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #555;
}

/* =========================
   Responsive Tweaks
   ========================= */

@media (max-width: 768px) {

  .service-hero h1 {
    font-size: 2.1rem;
  }

  .service-section {
    padding: 3.5rem 2rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav a {
    margin: 0 0.75rem;
  }
}


.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6e8c4a;
  margin-bottom: 0.75rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-card {
  background-color: #f8fdf6;
  border: 2px solid #e6efe1;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.activity-card p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (hover: hover) {
  .activity-card:hover {
    border-color: #3e5d30;
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
}


.service-section.alt {
  background-color: #f8fdf6;
}

.service-section.alt .container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}


.service-info-strip {
  background-color: #f8fdf6;
  padding: 2.5rem 2rem;
  border-top: 1px solid #e6efe1;
  border-bottom: 1px solid #e6efe1;
}

.service-info-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-info-strip li {
  font-size: 0.9rem;
  color: #555;
  position: relative;
  padding-left: 1.1rem;
}

.service-info-strip li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3e5d30;
}

.support-meta {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e6efe1;
  text-align: center;
}

.support-meta h3 {
  font-size: 1.1rem;
  color: #3e5d30;
  margin-bottom: 1.25rem;
}

.support-meta ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.support-meta li {
  font-size: 0.9rem;
  color: #555;
  position: relative;
  padding-left: 1.1rem;
}

.support-meta li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3e5d30;
}

/* =========================
   Service CTA – Green Anchor
   ========================= */

.service-cta {
  background-color: #f8fdf6;
  padding: 4.5rem 2rem;
  text-align: center;
}
.service-cta .container {
  background-color: #ffffff;
  border-radius: 20px;
  max-width: 950px;
  padding: 3rem 2.5rem;
  margin: 0 auto;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.service-cta h2 {
  color: #3e5d30;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-cta p {
  color: #444;
  max-width: 700px;
  margin: 0 auto 2rem;
}
@media (hover: hover) {

  .service-cta:hover {
    background-color: #f8fdf6;
  }

  .service-cta .container:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  }

  .service-cta .container:hover .btn-primary {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .service-cta .container:hover .btn-primary:hover {
    background-color: #2f4724;
    transform: translateY(-6px);
  }
}

.site-footer {
  background-color: #3e5d30;
  padding: 4rem 2rem;
  text-align: center;
}

.footer-logo-img {
  height: 56px;
  margin: 0 auto 1.75rem auto; /* ← this is the key */
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: block;
}

.site-footer nav {
  margin-bottom: 1.5rem;
}

.site-footer nav a {
  margin: 0 1rem;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.9rem;
  font-style: italic;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9); /* ← critical */
  line-height: 1.6;
}

.site-footer nav a:hover {
  text-decoration: underline;  /* ← underline on hover only */
  color: #ffffff;
}



/* Navigation Container */
.nav {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  max-width: 100%;
  margin: 2rem auto;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Flex container */
.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


/* Logo */
.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 40px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #3e5d30;
  border-radius: 2px;
}

/* Nav Links - desktop */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #3e5d30;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #6a4f2d;
}

/* =====================
   MOBILE STYLES
===================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .nav-toggle:checked + .nav-inner .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  /* Make sure nav-inner stays aligned */
  .nav-inner {
    align-items: center;
  }
}