/* --- CAMPAIGN STYLE SHEET --- */
:root {
    --navy: #101440;
    --gold: #FFB81C;
    --green: #2E8B57;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: #333; line-height: 1.6; background: var(--light-bg); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 900; color: var(--navy); }
a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; display: block; }

/* --- NAV BAR --- */
.navbar { background: var(--navy); padding: 10px 0; border-bottom: 4px solid var(--gold); position: sticky; top: 0; z-index: 1000; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo-small { height: 50px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 25px; margin: 0; align-items: center; }
.nav-links a { color: var(--white); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; }
.nav-links a:hover { color: var(--gold); }
.btn-donate-nav { background: #d32f2f; padding: 10px 20px; border-radius: 4px; color: white !important; }

/* --- HERO SECTIONS --- */
.hero { 
    background: linear-gradient(rgba(16, 20, 64, 0.9), rgba(16, 20, 64, 0.7)), url('hero-bg.jpg');
    background-size: cover; background-position: center;
    color: white; padding: 60px 0; min-height: 400px; display: flex; align-items: center;
}
.hero-split { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1; }
.hero-text h1 { color: white; font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero-text .slogan { color: var(--gold); font-size: 1.5rem; font-weight: 700; border-bottom: 3px solid var(--gold); display: inline-block; margin-bottom: 20px; }
.hero-photo-container { flex: 1; text-align: right; }
.hero-portrait { max-height: 500px; border: 5px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transform: rotate(-2deg); }

/* --- PAGE HEADERS (For sub-pages) --- */
.page-header { background: var(--navy); color: white; padding: 80px 0 40px 0; text-align: center; }
.page-header h1 { color: var(--gold); font-size: 3rem; margin-bottom: 10px; }
.page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* --- CONTENT BLOCKS --- */
.section { padding: 60px 0; }
.bg-white { background: white; }
.content-box { background: white; padding: 40px; border-radius: 5px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-top: -40px; }
.split-layout { display: flex; gap: 40px; align-items: flex-start; }
.sidebar { flex: 1; background: #eef2ee; padding: 30px; border-top: 4px solid var(--green); }
.main-content { flex: 2; }

/* --- CARDS & GRID --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 30px; border-top: 5px solid var(--navy); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card-icon { font-size: 2rem; color: var(--green); margin-bottom: 15px; }

/* --- LISTS --- */
ul.check-list { list-style: none; }
ul.check-list li { margin-bottom: 12px; padding-left: 30px; position: relative; }
ul.check-list li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--green); position: absolute; left: 0; top: 0; }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 15px 30px; border-radius: 5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); background: var(--gold); }
.btn:hover { transform: scale(1.05); background: #e5a519; }
.btn-outline { background: transparent; border: 2px solid white; color: white; }

/* --- FOOTER --- */
.footer { background: #05162b; color: #aaa; text-align: center; padding: 40px 0; border-top: 5px solid var(--gold); font-size: 0.9rem; }

/* --- MOBILE --- */
@media (max-width: 800px) {
    .hero-split, .split-layout { flex-direction: column; }
    .hero-photo-container { display: none; } /* Hide big photo on mobile hero to save space */
    .hero-text { text-align: center; }
    .nav-links { display: none; } /* Simplified for now */
    .content-box { margin-top: 0; padding: 20px; }
}