/* =========================
   Base (light theme + sticky footer layout)
   ========================= */
html, body {
  height: 100%;
  margin: 0;
  padding: 0; /* was 1rem; that created the white gutter */
  font-family: 'robotoslab', serif;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

main { flex: 1; } /* pushes footer to bottom if content is short */

/* =========================
   Footer
   ========================= */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  color: #9AA0A6;
  border-top: 1px solid #333;
  background: #fff;
  font-size: 0.95rem;
}

.social-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links span {
  font-weight: bold;
  margin-right: 8px;
  color: #333;
}

.social-links a img {
  width: 24px;
  height: 24px;
  filter: grayscale(0%);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.social-links a:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* =========================
   Header (site)
   ========================= */
:root{
  --header-bg:#fff;
  --header-text:#111;
  --brand: darkgreen; /* CTA + brand accent */
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  font-family: 'oswald', sans-serif;
  border-bottom: 1.5px solid #000; /* black bottom border */
}

.header-inner{
  max-width:1150px;
  margin:0 auto;
  padding:18px 22px;
  display:flex;
  align-items:center;
  gap:16px;       /* logo |   NAV (flex)   | button */
}

/* ---- Brand (left): image | text | image in a single row ---- */
.brand{
  flex:0 0 auto;
  display:flex;             /* <— critical: keeps images + text in one row */
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}
.brand-text{
  display:inline-block;
  text-align:left;
  font-weight:700;
  font-family: 'oswald', sans-serif;
  font-size:1.5rem;
  line-height:1.1;
  letter-spacing:.2px;
  color: darkgreen;
}
:root{ --brand-img-h: 56px; } /* tweak 48–64px to taste */
.brand-img{
  height:var(--brand-img-h);
  width:auto;
  display:block;
  object-fit:contain;
}

/* ---- Nav (centered between brand and button) ---- */
.main-nav{
  flex:1 1 auto;           /* takes the middle column */
  display:flex;
  justify-content:center;  /* centers nav list inside the middle column */
}
.nav-list{
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;                   /* use padding for symmetrical spacing */
}
.nav-list li{
  padding: 0 24px;
  border-left: 1px solid #000;  /* divider on left of each item */
}
.nav-list li:first-child{ border-left: none; } /* no divider before first */
.nav-list a{
  text-decoration: none;
  color: var(--header-text);    /* keep header links black */
  font-size: 1.15rem;
  font-weight: 500;
}
.nav-list a:hover{ text-decoration: underline; text-underline-offset: 4px; }

/* ---- CTA button (right) ---- */
a.btn-cta{
  flex:0 0 auto;
  display:inline-block;
  padding:10px 18px;
  font-size:1.05rem;
  font-weight:800;
  background: var(--brand);
  color:#fff !important;             /* prevent link color overrides */
  border:2px solid #000;
  border-radius:8px;
  box-shadow:3px 3px 0 #000;
  text-decoration:none !important;   /* prevent underline overrides */
  line-height:1;
  white-space:nowrap;
}
a.btn-cta:hover{ background: #095c0f; }
a.btn-cta:visited{ color:#fff !important; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px){
  a.btn-cta{ padding: 9px 14px; font-size: 1rem; }
}
@media (max-width: 680px){
  .brand-text{ display: none; } /* keep the icons only on small screens */
  .nav-list{ flex-wrap: wrap; gap: 14px 22px; }
  :root{ --brand-img-h: 40px; }
}

/* No underline on the logo link */
.site-header a.brand,
.site-header a.brand:link,
.site-header a.brand:visited,
.site-header a.brand:hover,
.site-header a.brand:active{
  text-decoration: none;
}

.hero {
  background-image: url('assets/sunset.jpg');  /* 👈 Path to your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: auto;
  z-index: 1;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #1a3d1a;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #333;
}

.features {
  padding: 60px 20px;
  background: #f5f5f5;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}
.feature {
  text-align: center;
  max-width: 280px;
}
.feature img {
  height: 64px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: darkgreen;
}
.progress-summary {
  padding: 10px 20px;
  background: #eef7ee;
  text-align: center;
  margin-top: 0px;
}

.progress-summary h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: darkgreen;
}

.progress-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.progress-card {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 12px 12px;
  width: 220px;
  box-shadow: 4px 4px 0 #00000033;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content */
  align-items: center;     /* horizontally center content */
}

.progress-card:hover {
  transform: translateY(-4px);
}

.progress-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #222;
}

.progress-value {
  font-size: 2.4rem;
  font-weight: bold;
  color: darkgreen;
  margin: 0;
}

.progress-summary span {
  font-size: 1.1rem;
  font-weight: normal;
  color: #555;
}

.hero-purpose-text {
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  color: #1a1a1a;
  line-height: 1.6;
  transition: opacity 0.3s ease;
  text-align: justify;
}

.about-hero {
  background: #f0f9f0;
  padding: 60px 20px;
  text-align: center;
}
.about-hero-inner {
  max-width: 800px;
  margin: auto;
}
.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: darkgreen;
}
.about-hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
}

.about-photo {
  text-align: center;
  margin: 40px auto;
}
.about-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-story, .about-values, .about-cta {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-story h2, .about-values h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: darkgreen;
}

.about-values ul {
  list-style-type: disc;
  padding-left: 1.2em;
  font-size: 1.1rem;
  color: #333;
}

.about-cta {
  text-align: center;
}
.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.homepage-ad {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.ad-box {
  width: 100%;
  max-width: 728px;
  height: 90px;
  background-color: #f1f1f1;
  border: 2px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-size: 1rem;
  text-align: center;
  font-style: italic;
}

.adsbygoogle {
  background-color: #f3f3f3;
  min-height: 100px;
  border: 1px dashed #ccc;
  display: block;
}

