﻿:root {
    --primary: #2a6e36;
    --secondary: #f39c12;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    padding-top: 80px; /* Account for fixed header */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}
    .logo img {
        height: 100px;
        margin-right: 10px;
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 25px;
    }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

            nav ul li a:hover, nav ul li a.active {
                color: var(--primary);
            }

.language-toggle {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

    .language-toggle:hover {
        background: #1f5129;
    }

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1200x400/2a6e36/white?text=Support+Our+Work') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

/* Breadcrumb */
.breadcrumb {
    background: var(--light);
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-content {
    display: flex;
    list-style: none;
}

    .breadcrumb-content li {
        margin-right: 10px;
        font-size: 0.9rem;
    }

        .breadcrumb-content li:after {
            content: "/";
            margin-left: 10px;
            color: #999;
        }

        .breadcrumb-content li:last-child:after {
            content: "";
        }

    .breadcrumb-content a {
        color: var(--primary);
        text-decoration: none;
    }

        .breadcrumb-content a:hover {
            text-decoration: underline;
        }

/* Donation Content */
.donation-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.donation-info {
    flex: 1;
    min-width: 300px;
}

.donation-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Impact Section */
.impact-section {
    background: var(--light);
    padding: 70px 0;
    margin: 60px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .impact-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .impact-card h3 {
        color: var(--primary);
        margin-bottom: 15px;
    }

/* Donation Options */
.donation-options {
    margin: 30px 0;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    flex: 1;
    min-width: 100px;
    background: var(--light);
    border: 2px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

    .amount-btn:hover, .amount-btn.selected {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

.custom-amount {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.currency {
    background: var(--light);
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-weight: 600;
}

.custom-amount input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
    }

.form-row {
    display: flex;
    gap: 15px;
}

    .form-row .form-group {
        flex: 1;
    }

/* Donation Frequency */
.donation-frequency {
    margin: 30px 0;
}

.frequency-options {
    display: flex;
    gap: 10px;
}

.frequency-btn {
    flex: 1;
    padding: 12px;
    background: var(--light);
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

    .frequency-btn:hover, .frequency-btn.selected {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

/* Payment Methods */
.payment-methods {
    margin: 30px 0;
}

.method-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.method-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    background: var(--light);
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

    .method-btn:hover, .method-btn.selected {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

    .method-btn i {
        font-size: 1.5rem;
        margin-bottom: 5px;
        display: block;
    }

/* Submit Button */
.submit-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 4px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background: #e67e22;
    }

/* Security Badge */
.security-badge {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

    .security-badge i {
        color: var(--primary);
        margin-right: 5px;
    }

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .trust-item i {
        color: var(--primary);
        font-size: 1.2rem;
    }

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--dark);
        max-width: 700px;
        margin: 0 auto;
    }

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

    .footer-column h3 {
        color: var(--secondary);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .footer-column p, .footer-column a {
        margin-bottom: 10px;
        color: #ccc;
        text-decoration: none;
        display: block;
    }

        .footer-column a:hover {
            color: var(--white);
        }

.social-icons {
    display: flex;
    margin-top: 15px;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #444;
        border-radius: 50%;
        margin-right: 10px;
        transition: background 0.3s;
    }

        .social-icons a:hover {
            background: var(--primary);
        }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .donation-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .amount-options {
        flex-direction: column;
    }

    .frequency-options {
        flex-direction: column;
    }

    .method-options {
        flex-direction: column;
    }
}