body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fdfdfd;
    }

    /* ================= NAVBAR ================= */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 40px;
      background: white;
      position: relative;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 40px;
    }

    .campaign-label {
      background-color: #0b773d;
      color: white;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 8px;
    }

    .navbar nav {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    nav a {
      text-decoration: none;
      color: black;
      margin: 0 15px;
    }

    .join-btn {
      background-color: #0b773d;
      color: white;
      border: none;
      padding: 8px 14px;
      border-radius: 4px;
      cursor: pointer;
    }

    .donate-btn {
      background-color: red;
      color: white;
      border: none;
      padding: 8px 14px;
      border-radius: 4px;
      cursor: pointer;
    }

    /* ====== Hamburger menu button ====== */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 26px;
      height: 3px;
      background: #0b773d;
      border-radius: 2px;
    }

    /* ====== MOBILE STYLES ====== */
    @media (max-width: 768px) {
      .navbar nav {
        display: none; /* hide by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background: white;
        border: 1px solid #ddd;
        padding: 10px;
      }

      .navbar nav.active {
        display: flex; /* show when active */
      }

      .hamburger {
        display: flex; /* show hamburger on mobile */
      }
    }
.join-btn {
    background-color: #0b773d;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
}

.donate-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
}

/* ====== Hamburger menu button (hidden on desktop) ====== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #0b773d;
    border-radius: 2px;
}

/* ================= HERO SECTION ================= */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #006b3c;
    color: white;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: #ffd700;
}

.hero-text p {
    line-height: 1.6;
    font-size: 16px;
}

.cta-buttons {
    margin-top: 20px;
}

.join-movement {
    background-color: white;
    color: #0b773d;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
}

.contribute {
    background-color: red;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.hero-image {
    position: relative;
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* ================= CAMPAIGN TRAIL SECTION ================= */
.campaign-trail {
    padding: 50px 40px;
    background-color: #f7f9fc;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    margin: 10px 0;
}

.section-header p {
    color: #555;
    font-size: 16px;
    margin-bottom: 40px;
}

.moments-btn {
    background-color: #0b773d;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-page {
  display: none;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 15px;
}

.gallery-page.active {
  display: grid;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
}

.caption {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.pagination {
  text-align: center;
  margin: 20px 0;
}

.pagination button {
  padding: 8px 12px;
  margin: 0 10px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.pagination button:hover {
  background: #0056b3;
}

#pageNum {
  font-weight: bold;
}


/* ================= MEET MARAGA SECTION ================= */
.meet-maraga {
    background-color: #f6e2b6;
    padding: 60px 40px;
}

.bio-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bio-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.bio-text {
    flex: 1;
}

.leadership-tag {
    background-color: #0b773d;
    color: white;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.bio-text h2 {
    font-size: 32px;
    margin: 15px 0;
}

.bio-point {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.point-number {
    background-color: #0b773d;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .bio-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-image img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    /* hide normal nav, use hamburger */
    .navbar nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        display: none;
        width: 220px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .navbar nav a {
        margin: 10px 0;
        color: black;
    }

    .navbar nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
footer {
      background-color: #006b3f; /* Green background */
      color: #fff;
      padding: 30px 20px;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    .footer-column {
      flex: 1;
      min-width: 220px;
      margin: 10px;
    }

    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-column p,
    .footer-column a {
      font-size: 14px;
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
    }

    .footer-column a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #ddd;
      margin-top: 20px;
      padding-top: 10px;
      font-size: 13px;
      color: #f0f0f0;
    }

    /* Responsive styling */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
      }

      .footer-column {
        text-align: center;
      }
    }
.footer-bottom .powered {
    font-size: 12px;
    color: #ccc; /* lighter shade */
  }

  .footer-bottom .powered a {
    color: #ffcc00; /* gold/yellow for highlight */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-bottom .powered a:hover {
    color: #ffffff; /* turn white on hover */
    text-decoration: underline;
  }


  .cta-buttons {
    margin-top: 20px;
    text-align: center;
  }

  .vote-button {
    background-color: #fff;            /* White ballot paper */
    border: 3px solid #006b3f;         /* Green border */
    color: orange;                    /* Green tick */
    font-size: 28px;                   /* Bigger tick */
    padding: 20px 25px;                /* Space inside */
    border-radius: 6px;                /* Slightly rounded edges */
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .vote-button:hover {
    background-color: #006b3f;   /* Green on hover */
    color: #fff;                 /* White tick */
  }