:root {
    --gold: #D4AF37;
    --black: #121212;
    --white: #ffffff;
    --grey: #f8f9fa;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* Minimalist Black Navbar */
.modern-nav {
    background: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo { color: white; font-weight: bold; font-size: 1.2rem; letter-spacing: 1px; }
.logo span { color: var(--gold); }

.nav-links { list-style: none; display: flex; gap: 25px; margin: 0; }
.nav-links a { text-decoration: none; color: white; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: black !important;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('pic9.jpeg') center/cover;
    height: 350px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 { font-size: 2.5rem; color: var(--gold); margin-bottom: 10px; }

/* Content Grid */
.container { max-width: 1100px; margin: auto; padding: 60px 20px; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; position: relative; }
.section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--gold); margin: 10px auto; }

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.need-item {
    background: var(--grey);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--gold);
    transition: 0.3s;
}

.need-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.need-item h3 { color: var(--gold); margin-top: 10px; }

/* Donation Card */
.donation-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.donation-header { background: var(--black); color: white; padding: 40px; text-align: center; }
.donation-header h2 { color: var(--gold); margin-bottom: 10px; }

.bank-grid { padding: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.data-box { background: #fff; border: 1px solid #e0e0e0; padding: 15px; border-radius: 8px; }
.data-box label { font-size: 0.7rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }

.copy-wrapper { display: flex; justify-content: space-between; align-items: center; margin-top: 5px; }
.copy-wrapper span { font-weight: bold; font-family: monospace; font-size: 1rem; }

.copy-wrapper button {
    background: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: 0.2s;
}

.copy-wrapper button:hover { background: var(--gold); color: black; }
.gold-border { border: 1.5px solid var(--gold); }
.audit-note { text-align: center; padding: 0 40px 40px; color: #0c0808; font-size: 0.8rem; }

:root {
    --gold: #D4AF37;
    --black: #1a1a1a;
    --white: #ffffff;
    --soft-gray: #f4f4f4;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--white);
    margin: 0;
    overflow-x: hidden;
}

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }
.center { text-align: center; }

/* Navbar */
#navbar {
    background: var(--black);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* Hero and Images */
.kids-photo-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.kids-photo-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.8s;
}

.kids-photo-wrapper:hover img {
    transform: scale(1.05);
}

.impact-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--black);
    margin: 30px auto;
    max-width: 700px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-main-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: 0.3s;
}

.btn-main-cta:hover {
    background: var(--white);
    transform: translateY(-3px);
}