﻿:root {
    --primary-color: #166534;
    --secondary-color: #854d0e;
    --bg-light: #f0fdf4;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

.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: 8px; font-weight: 600; font-family: var(--font-head); }

.navbar { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 1rem 0; }
.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: 50px; height: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; font-family: var(--font-head); }

.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; 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: rgba(0,0,0,0.6); }
.hero-content { position: relative; text-align: center; color: white; max-width: 800px; padding: 2rem; }
.hero-content h2 { font-size: 3.5rem; color: white; margin-bottom: 1.5rem; }
.glass-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(255,255,255,0.2); border-radius: 50px; margin-bottom: 1rem; font-family: var(--font-head); }

.about { padding: 5rem 0; background: white; }
.about-content { max-width: 800px; margin: 0 auto; }
.section-subtitle { color: var(--secondary-color); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }

.initiatives { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 4px solid var(--primary-color); }
.card-icon { width: 60px; height: 60px; background: rgba(0,0,0,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--secondary-color); margin-bottom: 1.5rem; }

footer { background: var(--primary-color); 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.8); margin: 1.5rem 0; }
.footer-contact h3 { color: white; margin-bottom: 1.5rem; }
.footer-contact p { color: rgba(255,255,255,0.8); 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.6); }

.history-text { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-muted); }
.vision-mission { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.vm-box { background: rgba(0,0,0,0.02); padding: 2rem; border-radius: 12px; border-top: 4px solid var(--primary-color); }
.vm-icon { font-size: 2rem; color: var(--secondary-color); margin-bottom: 1rem; }

.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; background: white; }
