/* Ader Foundation
   Design: Warm, trustworthy nonprofit
   Fonts: Merriweather + Source Sans 3 */

:root {
    --forest: #2d4a3e;
    --forest-light: #3d6251;
    --ink: #2a2a2a;
    --charcoal: #444444;
    --stone: #666666;
    --silver: #999999;
    --light: #e8e6e2;
    --cream: #f7f5f2;
    --ivory: #faf9f7;
    --white: #ffffff;
    --gold: #c4a35a;
    --serif: 'Merriweather', Georgia, serif;
    --sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.site-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--light);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--forest);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone);
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--forest);
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    background: var(--forest);
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* Mission */
.mission-section {
    background: var(--ivory);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--charcoal);
}

/* Legacy */
.legacy-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--charcoal);
}

/* Focus Areas */
.focus-section {
    background: var(--cream);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.focus-area {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border-top: 4px solid var(--forest);
}

.focus-area h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--forest);
}

.focus-area p {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.6;
}

/* Contact */
.contact-section {
    text-align: center;
}

.contact-content p {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content .email {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--forest);
    border-bottom: 1px solid var(--forest);
    margin-top: 8px;
}

.contact-content .email:hover {
    color: var(--forest-light);
    border-color: var(--forest-light);
}

/* Footer */
.site-footer {
    padding: 48px 0;
    background: var(--forest);
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.footer-logo {
    display: block;
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.site-footer p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .main-nav {
        display: none;
    }
}
