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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.6rem;
    color: #5d4037;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #5d4037;
}

.nav ul li a.btn-nav {
    background: #5d4037;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
}

.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: url('images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.9), rgba(62, 39, 35, 0.85));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 span {
    color: #d7ccc8;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    background: #d7ccc8;
    color: #3e2723;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #bcaaa4;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #5d4037;
}

.section-tag {
    display: inline-block;
    color: #5d4037;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #3e2723;
}

.about {
    padding: 100px 20px;
    background: #efebe9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    color: #3e2723;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.value-box {
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-box span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.value-box h4 {
    color: #5d4037;
    font-size: 0.95rem;
}

.ministry {
    padding: 100px 20px;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ministry-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ministry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.15);
}

.ministry-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ministry-card h3 {
    color: #3e2723;
    margin-bottom: 15px;
}

.ministry-card p {
    color: #666;
    font-size: 0.95rem;
}

.support {
    padding: 100px 20px;
    background: #efebe9;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.support-content h2 {
    font-size: 2.5rem;
    color: #3e2723;
    margin-bottom: 20px;
}

.support-content > p {
    color: #555;
    margin-bottom: 30px;
}

.support-ways {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.way-item {
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #5d4037;
}

.way-item h4 {
    color: #3e2723;
    margin-bottom: 5px;
}

.way-item p {
    color: #666;
    font-size: 0.95rem;
}

.cta-card {
    background: linear-gradient(135deg, #5d4037, #3e2723);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.cta-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.cta-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d7ccc8;
}

.cta-card .btn-primary {
    width: 100%;
    text-align: center;
}

.footer {
    background: #3e2723;
    color: #fff;
    padding: 70px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.85;
}

.footer-legal h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-legal .nonprofit-status {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d7ccc8;
    margin-bottom: 10px;
}

.footer-legal .ein-number {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact .email-large {
    font-size: 1.2rem;
    margin-top: 15px;
}

.footer-contact .email-large a {
    color: #d7ccc8;
    text-decoration: none;
}

.footer-contact .email-large a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0.7;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d7ccc8;
    color: #3e2723;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    display: flex;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    position: relative;
}

.modal-content.thank-you {
    text-align: center;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.modal-content h2 {
    color: #3e2723;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3e2723;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #5d4037;
}

.modal .btn-primary {
    width: 100%;
}

@media (max-width: 1024px) {
    .ministry-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid, .support-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
    }

    .nav.show {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .ministry-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
