/* Design 5: Classic Traditional - Formal nonprofit aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Lato:wght@400;600&display=swap');

:root {
    --forest-green: #1B5E20;
    --forest-dark: #0D3D10;
    --forest-light: #2E7D32;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --cream: #FBF8F3;
    --cream-dark: #F5F1.footer-logo img {
    height: 198px;
    width: auto;
    margin-bottom: 20px;
}   --navy-text: #1A1F36;
    --gray-text: #4A5568;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--navy-text);
    background: linear-gradient(180deg, #f0f5f0 0%, var(--white) 400px);
    font-size: 17px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Header - Traditional nonprofit */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.navbar {
    background: transparent;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    gap: 48px;
}

.logo {
    flex-shrink: 0;
    transform: scale(0.95);
}

.logo img {
    height: 180px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 6px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu .nav-disabled {
    color: var(--forest-green);
    font-weight: 600;
    font-size: 15px;
    cursor: not-allowed;
    opacity: 0.4;
    padding: 6px 0;
}

.footer-links .nav-disabled {
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    opacity: 0.4;
}

/* Dropdown menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid var(--gold);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 0;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--forest-green);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--light-green);
    color: var(--forest-green);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--forest-green);
    transition: 0.3s;
}

/* Hero - Traditional centered with professional photo */
.hero {
    position: relative;
    min-height: 550px;
    background: var(--forest-green) url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.40) 0%, rgba(30, 64, 18, 0.45) 50%, rgba(15, 36, 9, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 70px 35px;
}

.hero h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.375rem;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Traditional style */
.btn {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 15px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--forest-green);
    border-color: white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: var(--forest-green);
    border-color: var(--forest-green);
}

.btn-outline:hover {
    background: var(--forest-green);
    color: white;
}

/* Sections - Centered traditional */
.section {
    padding: 90px 0;
}

.section-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 18px;
    color: var(--forest-green);
    font-weight: 700;
    line-height: 1.3;
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
    font-size: 1.125rem;
    color: var(--gray-text);
    line-height: 1.8;
}

/* Who We Are */
.who-we-are {
    background: var(--cream);
}

/* Cards - Traditional centered */
.vme-section {
    background: var(--white);
}

.vme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 35px;
}

.card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 6px;
    border: 2px solid var(--cream-dark);
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--forest-green);
    font-size: 36px;
    border: 3px solid var(--gold);
}

.card h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.625rem;
    margin-bottom: 16px;
    color: var(--forest-green);
    font-weight: 700;
}

.card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--forest-dark);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.75rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 38px;
    opacity: 0.95;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D5016 0%, #1e4012 50%, #0f2409 100%);
    color: white;
    padding: 75px 0 38px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 150px;
    width: auto;
    margin-bottom: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-contact {
    margin-top: 18px;
}

.footer-col h4 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.25rem;
    margin-bottom: 22px;
    color: var(--gold-light);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        max-height: 800px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-top: 1px solid var(--cream-dark);
    }

    .nav-menu a {
        display: block;
        padding: 18px;
    }

    /* Dropdown menu on mobile */
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }

    .dropdown .dropdown-menu li {
        border-top: 1px solid #e0e0e0;
    }

    .dropdown .dropdown-menu a {
        padding: 14px 24px;
        font-size: 0.9rem;
        color: #555;
    }

    /* Only show arrow on dropdowns that have submenus */
    .dropdown:has(.dropdown-menu) > a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

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

    .hero .tagline {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    body {
        font-size: 16px;
    }

    .hero {
        min-height: 480px;
    }

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

    .section {
        padding: 70px 0;
    }

    .card {
        padding: 35px 25px;
    }
}
