/* ============================================================
   Seeds of Success — index.css
   Page-specific styles only. Shared styles are in common.css.
   ============================================================ */

/* ---------------------------------------------------------
       Seeds of Success — Home Page
       Clean, NGO-style, fully responsive layout
       --------------------------------------------------------- */

    /* 1. Reset & base */

    /* 2. Layout helpers */

    /* 3. Header / Navigation */

    /* 4. Hamburger button (mobile only) */

    /* 5. Hero section */
    .hero {
      position: relative;
      padding: 100px 0 110px;
      background: linear-gradient(135deg, #0d6e4f 0%, #14906a 60%, #f5a623 140%);
      color: #ffffff;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.25), transparent 50%);
    }
    .hero-inner {
      position: relative;
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
    }
    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(36px, 6vw, 60px);
      line-height: 1.15;
      margin-bottom: 16px;
      font-weight: 700;
    }
    .hero .tagline {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 300;
      margin-bottom: 36px;
      opacity: 0.95;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
/* Hero Buttons */

.hero-buttons .btn-primary {
    background: #F4A623;
    color: #1f2d2a;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #E29515;
    color: #1f2d2a;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.7);
}

.hero-buttons .btn-outline:hover {
    background: #ffffff;
    color: #0d6e4f;
    border-color: #ffffff;
    transform: translateY(-2px);
}

    /* 6. Section title shared style */

    /* 7. Mission strip */
    .mission-strip {
      background: #ffffff;
      padding: 60px 0;
      text-align: center;
      border-bottom: 1px solid #e8efec;
    }
    .mission-strip p {
      font-family: "Playfair Display", serif;
      font-style: italic;
      font-size: clamp(20px, 2.6vw, 28px);
      color: #0d6e4f;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* 8. Three-card feature grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .feature-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(13, 110, 79, 0.08);
      border: 1px solid #e8efec;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(13, 110, 79, 0.15);
    }
    .feature-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #0d6e4f, #14906a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 30px;
    }
    .feature-card h3 {
      font-family: "Playfair Display", serif;
      color: #0d6e4f;
      font-size: 24px;
      margin-bottom: 12px;
    }
    .feature-card p {
      color: #5a6b66;
      margin-bottom: 22px;
    }
    .feature-link {
      color: #0d6e4f;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border-bottom: 2px solid #f5a623;
      padding-bottom: 2px;
    }

    /* 9. Stats banner */
    .stats {
      background: #0d6e4f;
      color: #fff;
      padding: 60px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }
    .stat-num {
      font-family: "Playfair Display", serif;
      font-size: 42px;
      font-weight: 700;
      color: #f5a623;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: 0.85;
    }

    /* 10. Call-to-action band */
    .cta-band {
      background: linear-gradient(135deg, #f5a623, #f7b945);
      color: #1f2d2a;
      padding: 70px 0;
      text-align: center;
    }
    .cta-band h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(26px, 3.5vw, 36px);
      margin-bottom: 14px;
    }
    .cta-band p { margin-bottom: 28px; font-size: 17px; }
    .cta-band .btn {
      background: #0d6e4f;
      color: #fff;
    }
    .cta-band .btn:hover { background: #0a5239; }

    /* 11. Footer */

    /* 12. Responsive — Tablet */
    @media (max-width: 960px) {
      .feature-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      
    }

    /* 13. Responsive — Mobile */
    @media (max-width: 768px) {

      .hero { padding: 70px 0 80px; }
      
    }

    /* 10. Page transitions */

    @keyframes pageFadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pageFadeOut {
      from { opacity: 1; transform: translateY(0); }
      to   { opacity: 0; transform: translateY(-6px); }
    }


   