﻿:root {
    --primary-color: #065f46;
    --secondary-color: #65a30d;
    --bg-light: #f7fee7;
    --text-main: #334155;
    --text-muted: #64748b;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-main); line-height: 1.7; background: var(--bg-light); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--primary-color); }
.text-center { text-align: center; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.btn-primary { display: inline-block; padding: 1rem 2.5rem; background: var(--secondary-color); color: white; text-decoration: none; border-radius: 12px; font-weight: 600; font-family: var(--font-head); transition: 0.3s; }
.btn-primary:hover { background: var(--primary-color); }
.btn-secondary { display: inline-block; padding: 1rem 2.5rem; background: transparent; color: white; text-decoration: none; border-radius: 12px; font-weight: 600; font-family: var(--font-head); border: 2px solid white; transition: 0.3s; }
.btn-secondary:hover { background: white; color: var(--primary-color); }

.navbar { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 6px rgba(0,0,0,0.05); padding: 1rem 0; border-bottom: 2px solid var(--secondary-color); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo-img { width: 45px; height: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; }
.nav-links a:hover { color: var(--secondary-color); }

.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: flex-start; padding-top: 80px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('assets/hero.png'); background-size: cover; background-position: center; z-index: -1; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(6, 95, 70, 0.95), rgba(0,0,0,0.5)); }
.hero-content { position: relative; color: white; max-width: 750px; padding: 2rem 4rem; }
.hero-content h2 { font-size: 3.2rem; color: white; margin-bottom: 1.5rem; line-height: 1.2; }
.glass-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(255,255,255,0.15); border-radius: 5px; margin-bottom: 1rem; border-left: 4px solid var(--secondary-color); backdrop-filter: blur(5px); }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; }

.about { padding: 6rem 0; background: white; }
.section-subtitle { color: var(--secondary-color); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }
.section-title { font-size: 2.8rem; margin-bottom: 1.5rem; }
.history-text { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-muted); }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0; }
.vm-box { background: var(--bg-light); padding: 2rem; border-radius: 12px; border-top: 4px solid var(--primary-color); }
.vm-icon { font-size: 2rem; color: var(--secondary-color); margin-bottom: 1rem; }

.status-501c3 { margin-top: 2rem; padding: 2rem; background-color: rgba(0,0,0,0.03); border-left: 5px solid var(--secondary-color); border-radius: 12px; }
.status-501c3 h4 { margin-bottom: 0.5rem; display: flex; align-items: center; }

.initiatives { padding: 6rem 0; background: var(--bg-light); }
.section-header { margin-bottom: 4rem; border-left: 5px solid var(--secondary-color); padding-left: 1.5rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.card { background: white; padding: 3rem 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.3s; border-top: 5px solid var(--secondary-color); }
.card:hover { transform: translateY(-10px); }
.card-icon { width: 70px; height: 70px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary-color); margin-bottom: 1.5rem; }

.impact { padding: 6rem 0; background: var(--primary-color); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-box { background: rgba(255,255,255,0.1); padding: 3rem 1rem; border-radius: 12px; color: white; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.stat-icon { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 1rem; }
.stat-number { font-size: 3rem; color: white; margin-bottom: 0.5rem; }

.get-involved { padding: 6rem 0; text-align: center; background: white; }
.gi-content { max-width: 800px; margin: 0 auto; }
.gi-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }
.gi-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.gi-actions { display: flex; justify-content: center; gap: 1.5rem; }
.gi-actions .btn-secondary { border-color: var(--primary-color); color: var(--primary-color); }
.gi-actions .btn-secondary:hover { background: var(--primary-color); color: white; }

footer { background: var(--text-main); color: white; padding: 5rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-about p { color: rgba(255,255,255,0.7); margin: 1.5rem 0; }
.footer-contact h3 { color: white; margin-bottom: 1.5rem; }
.footer-contact p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }
