:root {
    --gold: #d4af37;
    --black: #121212;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); overflow-x: hidden; }

/* Navigation per image reference */
nav {
    background: var(--black);
    border-bottom: 2px solid var(--gold);
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: 0.4s;
}
nav.scrolled { padding: 8px 5%; background: rgba(18,18,18,0.95); backdrop-filter: blur(10px); }
.nav-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.nav-logo { height: 50px; border-radius: 4px; }
.brand-name { color: var(--white); font-weight: 800; font-size: 1.1rem; }
.tagline { color: #888; font-size: 0.7rem; }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.btn-support { background: var(--gold); padding: 8px 20px; border-radius: 5px; color: black !important; font-weight: bold; }

/* Hero Section */
.hero { height: 90vh; position: relative; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(35%); }
h1 { font-family: 'Playfair Display'; font-size: 3.5rem; margin-bottom: 15px; }
.gold-text { color: var(--gold); }
.btn-gold { background: var(--gold); color: white; padding: 12px 30px; text-decoration: none; margin: 10px; border-radius: 5px; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }

/* Stats & Gallery */
.stats-container { display: flex; justify-content: space-around; padding: 60px 5%; background: #f9f9f9; text-align: center; }
.stat-card h2 { font-size: 3rem; color: var(--gold); }
.grid-section { padding: 80px 5%; text-align: center; }
.section-title { margin-bottom: 40px; font-size: 2.5rem; font-family: 'Playfair Display'; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.grid-item { position: relative; height: 400px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }

/* Reactive Hover Text */
.overlay {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.5s; padding: 25px;
}
.grid-item:hover .overlay { opacity: 1; }
.grid-item:hover img { transform: scale(1.1); }
.overlay-text h3 { color: var(--gold); margin-bottom: 10px; }
.overlay-text p { color: white; font-size: 0.9rem; }

/* Donation Boxes */
.donation-reactive { padding: 60px 5%; text-align: center; background: #fdfdfd; }
.banking-flex { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.bank-box { border: 1px solid #ddd; padding: 30px; border-radius: 12px; width: 320px; text-align: left; transition: 0.3s; }
.bank-box:hover { transform: translateY(-10px); border-color: var(--gold); }
.highlight { border: 2px solid var(--gold); background: #fffcf5; }
.mpesa { color: #49aa47; font-weight: 800; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

footer { background: var(--black); color: #888; padding: 40px; text-align: center; font-size: 0.8rem; }

