/* ═══════════════════════════════════════════════════
   NFCO – Nkurage For Charity Organization
   Shared Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts loaded in each HTML head ── */

:root {
    --green:    #1A5C38;
    --green-dk: #0E3B22;
    --green-lt: #2D8A57;
    --green-bg: #EBF5EE;
    --amber:    #D97B2B;
    --amber-lt: #F0A05A;
    --amber-bg: #FDF3E8;
    --cream:    #FAF7F2;
    --sand:     #EDE4D5;
    --charcoal: #1C1C1C;
    --muted:    #5C5C5C;
    --border:   #E0D8CE;
    --white:    #FFFFFF;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
    --radius: 6px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 28px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 56px rgba(0,0,0,0.12);
    --transition: all 0.28s ease;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  
  /* ─────────────────────────────────────────────────────
     NAVBAR
  ───────────────────────────────────────────────────── */
  .site-nav {
    background: var(--green-dk);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  }
  .site-nav .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
  }
  .site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .logo-circle {
    width: 44px; height: 44px;
    background: var(--amber);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: -0.5px;
    flex-shrink: 0;
  }
  .brand-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.2;
  }
  .brand-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .nav-link-item {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    font-size: 0.87rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.95rem !important;
    position: relative;
    transition: color 0.2s;
  }
  .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--amber-lt);
    transition: left 0.25s, right 0.25s;
  }
  .nav-link-item:hover,
  .nav-link-item.active {
    color: var(--white) !important;
  }
  .nav-link-item:hover::after,
  .nav-link-item.active::after {
    left: 0.95rem; right: 0.95rem;
  }
  .btn-donate {
    background: var(--amber);
    color: var(--white) !important;
    border-radius: var(--radius);
    padding: 0.45rem 1.3rem !important;
    font-weight: 600 !important;
    font-size: 0.87rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
    border: none;
  }
  .btn-donate:hover {
    background: var(--amber-lt);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(217,123,43,0.4);
    color: var(--white) !important;
  }
  
  /* ─────────────────────────────────────────────────────
     SHARED SECTION UTILITIES
  ───────────────────────────────────────────────────── */
  .section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--amber);
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3.5vw, 2.7rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--green-dk);
  }
  .section-title span { color: var(--amber); }
  .section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 620px;
  }
  .amber-bar {
    width: 48px; height: 3px;
    background: var(--amber);
    border-radius: 2px;
    margin: 0.9rem 0 1.4rem;
  }
  .amber-bar.center { margin: 0.9rem auto 1.4rem; }
  
  /* ─────────────────────────────────────────────────────
     BUTTONS
  ───────────────────────────────────────────────────── */
  .btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-green:hover {
    background: var(--green-lt);
    border-color: var(--green-lt);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,92,56,0.28);
  }
  .btn-green-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 0.68rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-green-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
  }
  .btn-amber-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--white);
    border: 2px solid var(--amber);
    border-radius: var(--radius);
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-amber-solid:hover {
    background: var(--amber-lt);
    border-color: var(--amber-lt);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217,123,43,0.32);
  }
  .btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: var(--radius);
    padding: 0.68rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
  }
  .btn-white-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
  }
  
  /* ─────────────────────────────────────────────────────
     PAGE HERO BANNER (inner pages)
  ───────────────────────────────────────────────────── */
  .page-hero {
    background: url("about.jpeg");
    background-position: center;
    background-size: cover;

    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(217,123,43,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
  }
  .page-hero-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--amber-lt);
    display: block;
    margin-bottom: 0.6rem;
  }
  .page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.8;
  }
  .breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.8rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
  }
  .breadcrumb-custom a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
  }
  .breadcrumb-custom a:hover { color: var(--amber-lt); }
  .breadcrumb-custom .sep { color: rgba(255,255,255,0.3); }
  .breadcrumb-custom .current { color: var(--amber-lt); font-weight: 500; }
  
  /* ─────────────────────────────────────────────────────
     CARDS
  ───────────────────────────────────────────────────── */
  .nfco-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
  }
  .nfco-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }
  .card-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .icon-green  { background: var(--green-bg); color: var(--green); }
  .icon-amber  { background: var(--amber-bg); color: var(--amber); }
  
  /* ─────────────────────────────────────────────────────
     STATS STRIP
  ───────────────────────────────────────────────────── */
  .stats-strip {
    background: var(--green-dk);
    padding: 48px 0;
  }
  .stat-item { text-align: center; }
  .stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    margin: 0 auto;
    height: 60px;
  }
  
  /* ─────────────────────────────────────────────────────
     PROGRAM CARDS
  ───────────────────────────────────────────────────── */
  .program-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
  }
  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  .program-card-header {
    padding: 28px 28px 20px;
    position: relative;
  }
  .program-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    line-height: 1;
  }
  .program-card-body { padding: 20px 28px 28px; }
  
  /* ─────────────────────────────────────────────────────
     FOOTER
  ───────────────────────────────────────────────────── */
  .site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
  }
  .footer-brand { margin-bottom: 1.2rem; }
  .footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    max-width: 300px;
  }
  .footer-heading {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.1rem;
    position: relative;
  }
  .footer-heading::after {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--amber);
    margin-top: 6px;
  }
  .footer-links { list-style: none; padding: 0; }
  .footer-links li { margin-bottom: 0.55rem; }
  .footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.87rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--amber-lt); }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
  }
  .footer-contact-item i {
    color: var(--amber);
    margin-top: 3px;
    flex-shrink: 0;
  }
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
  }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
  }
  .social-btn:hover {
    background: var(--amber);
    color: var(--white);
    transform: translateY(-2px);
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 48px;
    padding: 18px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }
  
  /* ─────────────────────────────────────────────────────
     FORM STYLES
  ───────────────────────────────────────────────────── */
  .form-label-nfco {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }
  .form-control-nfco {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .form-control-nfco:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,92,56,0.1);
  }
  .form-select-nfco {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.2s;
    width: 100%;
    cursor: pointer;
  }
  .form-select-nfco:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,92,56,0.1);
  }
  
  /* ─────────────────────────────────────────────────────
     FADE-IN ANIMATION
  ───────────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  
  /* ─────────────────────────────────────────────────────
     MISC UTILITIES
  ───────────────────────────────────────────────────── */
  .bg-cream { background: var(--cream); }
  .bg-sand  { background: var(--sand); }
  .bg-green { background: var(--green); }
  .bg-green-dk { background: var(--green-dk); }
  .text-green { color: var(--green); }
  .text-amber { color: var(--amber); }
  .text-muted-custom { color: var(--muted); }
  .badge-green {
    background: var(--green-bg);
    color: var(--green);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .badge-amber {
    background: var(--amber-bg);
    color: var(--amber);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .quote-block {
    border-left: 4px solid var(--amber);
    padding: 1.2rem 1.5rem;
    background: var(--amber-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.8;
  }
  
  /* ─────────────────────────────────────────────────────
     RESPONSIVE
  ───────────────────────────────────────────────────── */
  @media (max-width: 768px) {
    .page-hero { padding: 60px 0 44px; }
    .stat-divider { display: none; }
  }