/* HERO SECTION */
.hero {
    position: relative;
    height: 80vh;
    background: url('../images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
    overflow: hidden;
}

/* OVERLAY (CURTAIN EFFECT) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 80, 40, 0.67),
        rgba(0, 0, 0, 0.318)
    );
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

/* TITLE */
.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* TEXT */
.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e6f5ec;
}

/* BUTTON GROUP */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

/* BUTTON BASE */

/* ================= RED BUTTON ================= */
.btn btn-green {
    background-color: #f32424 !important; /* RED */
    color: #ffffff;
    border: none;
}

.btn btn-green {
    background-color: #c91c1c !important; /* darker red on hover */
    color: #ffe600; /* yellow text */
}
/* ================= ORANGE BUTTON ================= */
.btn-orange {
    background: #f29c1f;
}

.btn-orange:hover {
    color: #ffffff; /* keep white but brighter */
    text-shadow: 0 0 8px rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* ================= GREEN BUTTON ================= */
.btn-green-alt {
    background: #2e8b57;
}

.btn-green-alt:hover {
    color: #ffd700; /* gold */
    transform: translateY(-2px);
}

/* CLICK EFFECT */
.btn:active {
    transform: scale(0.96);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   WHY JOIN SECTION
========================= */
.why-join-section {
    background: #e5e5e5;
    padding: 60px 20px;
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2f4f3f;
    margin-bottom: 40px;
}

/* TEXT SIDE */
.why-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 520px;
}

.why-text p {
    margin-bottom: 20px;
}

/* HIGHLIGHT WORDS */
.highlight {
    color: #f39c12;
    font-weight: 600;
}

/* IMAGE */
.why-image {
    display: flex;
    justify-content: center;
}

.why-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

/* subtle hover */
.why-image img:hover {
    transform: scale(1.03);
}

/* BOTTOM TEXT */
.bottom-text {
    margin-top: 40px;
    font-weight: 600;
    color: #2f4f3f;
    font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .why-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .why-text {
        font-size: 15px;
    }

    .bottom-text {
        font-size: 14px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .why-text {
        font-size: 14px;
    }

    .why-image img {
        max-width: 100%;
    }
}

.volunteer-section {
    padding: 80px 20px;
    background: #f4f6f5;
    text-align: center;
}

.volunteer-section h2 {
    font-size: 2.2rem;
    color: #2e4d3c;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* CARD */
.volunteer-card {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    background: #c7d6c8;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #2e4d3c;
}

/* IMAGE */
.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FORM */
.volunteer-form {
    padding: 25px;
    flex: 1;
    text-align: left;
}

.volunteer-form h3 {
    margin-bottom: 15px;
    color: #1d1d1d;
}

/* INPUTS */
.volunteer-form input,
.volunteer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #888;
    outline: none;
    font-size: 0.9rem;
}

/* TEXTAREA */
.volunteer-form textarea {
    resize: none;
    height: 90px;
}

/* CHECKBOX */
.checkbox {
    font-size: 0.8rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* BUTTON */
.send-btn {
    background: #f29c1f;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: #d98200;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .volunteer-card {
        flex-direction: column;
    }

    .volunteer-image {
        height: 250px;
    }
}

/* VOLUNTEER FORM */
.volunteer-section {
    padding: 80px 20px;
    background: #f4f6f5;
    text-align: center;
}

.volunteer-section h2 {
    font-size: 2.2rem;
    color: #2e4d3c;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #000000;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

/* CARD */
.volunteer-card {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    background: #c7d6c8;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #2e4d3c;
}

/* IMAGE WRAPPER */
.volunteer-image {
    flex: 1;
    min-height: 400px;
}

/* IMAGE */
.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FORM */
.volunteer-form {
    padding: 25px;
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.volunteer-form h3 {
    margin-bottom: 15px;
    color: #1d1d1d;
}

/* INPUTS */
.volunteer-form input,
.volunteer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #888;
    outline: none;
    font-size: 0.9rem;
    background: #fff;
}

/* TEXTAREA */
.volunteer-form textarea {
    resize: none;
    height: 90px;
}

/* CHECKBOX */
.checkbox {
    font-size: 1.0 rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* BUTTON */
.send-btn {
    background: #f29c1f;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: #d98200;
}

/* ========================= */
/* 📱 MOBILE FIX (IMPORTANT) */
/* ========================= */
@media (max-width: 768px) {
    .volunteer-card {
        flex-direction: column;
        height: 100vh; /* full screen split */
    }

    /* IMAGE = TOP HALF */
    .volunteer-image {
        height: 50vh;
        min-height: unset;
    }

    /* FORM = BOTTOM HALF */
    .volunteer-form {
        height: 50vh;
        overflow-y: auto;
        padding: 20px;
    }
}

.partner-section {
  background: #f5f6f7;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.partner-section h2 {
  font-size: 32px;
  color: #2f4f3f;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.icon {
  width: 70px;
  height: 70px;
  margin: 20px auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

/* Icon colors */
.blue { background: #4a90e2; }
.orange { background: #f5a623; }
.green { background: #4caf50; }
.navy { background: #2c3e50; }

.card h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: 600;
}

.card p {
  font-size: 13px;
  color: #666;
  padding: 0 15px;
  margin-bottom: 15px;
}

.card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-top: 1px solid #eee;
}

/* CTA */
.cta {
  margin-top: 40px;
}

.cta p {
  color: #444;
  margin-bottom: 10px;
}

.cta a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 600;
}

.cta a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .partner-section h2 {
    font-size: 24px;
  }
}