/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

a {
  color: #2a7d3a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/* ==================== CONTAINER ==================== */
.wcontainer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.defpadding {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ==================== HEADER TITLES ==================== */
#headerwrap {
  background: #388e3c;
}

#headerwrap .wcontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header-title {
  flex: 1;
}

#header-title span {
  color: #fff;
  background: #388e3c;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

#logo {
  height: 45px;
}

#headerright #social a {
  color: #fff;
  margin-left: 15px;
  font-size: 14px;
  opacity: 0.9;
}

#headerright #social a:hover {
  opacity: 1;
  text-decoration: none;
}

/* ==================== NAVIGATION ==================== */
#menuwrap {
  background: #388e3c;
  border-bottom: 2px solid #2e7d32;
}

#linklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

#linklist .menulink {
  margin: 0;
}

#linklist .menulink a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

#linklist .menulink a:hover,
#linklist .menulink a.active {
  background: #1b5e20;
  text-decoration: none;
}

/* ==================== CONTENT LAYOUT ==================== */
#content-bg {
  background: #e8e8e8;
}

#content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

#main-wrap {
  flex: 1;
  padding: 20px 15px;
}

#main {
  background: #fff;
  padding: 20px 25px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

#sidebar-wrap {
  width: 280px;
  flex-shrink: 0;
  padding: 20px 0 20px 15px;
}

/* ==================== ARTICLES ==================== */
article.full h1 {
  font-size: 28px;
  color: #2e7d32;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

article h2 {
  font-size: 20px;
  color: #2e7d32;
  margin: 25px 0 15px;
}

article h3 {
  font-size: 16px;
  color: #555;
  margin: 20px 0 10px;
}

article p {
  margin-bottom: 15px;
}

article ul.quick-info {
  list-style: none;
  margin: 15px 0 20px;
  padding: 15px;
  background: #f0f7f1;
  border-left: 4px solid #348755;
  border-radius: 3px;
}

article ul.quick-info li {
  margin-bottom: 6px;
  font-size: 15px;
}

article header a {
  font-size: 17px;
  font-weight: 600;
  color: #2a7d3a;
}

article .details {
  font-size: 13px;
  color: #777;
  margin: 6px 0 15px;
}

article .details a {
  color: #2a7d3a;
}

/* ==================== SIDEBAR WIDGETS ==================== */
#sidebar aside {
  background: #fff;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

#sidebar aside header {
  font-size: 15px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#sidebar aside p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

#sidebar aside ul {
  list-style: none;
  padding: 0;
}

#sidebar aside ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

#sidebar aside ul li a {
  color: #2a7d3a;
}

.hours-list li {
  padding: 4px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-list li:last-child {
  border-bottom: none;
}

#sidebar aside address {
  font-style: normal;
  font-size: 14px;
  color: #555;
}

/* ==================== FOOTER ==================== */
#footer {
  background: #2e7d32;
  color: #ccc;
  margin-top: 20px;
}

#footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 25px 15px;
}

#footer-left,
#footer-right {
  width: 48%;
}

#footer-left-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

#footer-left-content .extra-info {
  flex: 1;
  min-width: 180px;
}

#footer-left-content .extra-info header {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

#footer-left-content .extra-info hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 8px;
}

#footer-left-content .extra-info ul {
  list-style: none;
  padding: 0;
}

#footer-left-content .extra-info ul li {
  margin-bottom: 4px;
}

#footer-left-content .extra-info ul li a {
  color: #a5d6a7;
  font-size: 13px;
}

#footer-left-content .extra-info ul li a:hover {
  color: #fff;
  text-decoration: none;
}

#footer-right {
  text-align: right;
}

#footer-right .extra-info ul {
  list-style: none;
  padding: 0;
}

#footer-right .extra-info ul li {
  margin-bottom: 6px;
  font-size: 13px;
}

#footer-right .extra-info ul li a {
  color: #a5d6a7;
}

#footer-right .extra-info ul li p {
  margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  #linklist {
    flex-direction: column;
  }

  #linklist .menulink a {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  #content {
    flex-direction: column;
  }

  #sidebar-wrap {
    width: 100%;
    padding: 15px 0 0 0;
  }

  #footer-content {
    flex-direction: column;
    gap: 20px;
  }

  #footer-left,
  #footer-right {
    width: 100%;
    text-align: left;
  }
}
/* ==================== SUPPORTER GRID ==================== */
.supporter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 25px;
  margin-bottom: 35px;
}

.supporter-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supporter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.supporter-img {
  width: 100%;
  height: 180px;
  object-fit: contain; /* Keeps logos from being cropped */
  background: #f9f9f9;
  padding: 20px;
  display: block;
}

.supporter-card h3 {
  font-size: 18px;
  color: #2e7d32;
  margin: 15px 15px 6px;
  font-weight: 700;
}

.supporter-card p {
  font-size: 14px;
  color: #555;
  margin: 0 15px 15px;
  line-height: 1.5;
}

/* Stack to single column on smaller screens */
@media (max-width: 768px) {
  .supporter-grid {
    grid-template-columns: 1fr;
  }
}
/* ==================== FEATURED PROGRAM SECTION ==================== */
.program-feature {
  margin: 30px 0;
  padding: 25px;
  background: #f8fdf9;
  border-radius: 6px;
  border-left: 4px solid #348755;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden; /* Contains the floated image */
}

.feature-image {
  float: left;
  width: 45%;
  margin-right: 25px;
  margin-bottom: 15px;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: block;
}

.feature-content h2 {
  font-size: 26px;
  color: #2e7d32;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}

.feature-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
  .feature-image {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}


/* ==================== SIDEBAR LOGO ==================== */
.sidebar-logo {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.sidebar-logo img {
  max-width: 262px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ==================== RESPONSIVE (Mobile) ==================== */
@media (max-width: 768px) {
  #header-title span {
    font-size: 18px;
  }
  .sidebar-logo img {
    max-width: 140px;
  }
}