:root {
    --primary-text: #111;
    --secondary-text: #555;
    --input-border: #888;
    --button-bg: #1a1a1a;
    --button-hover: #333;
    --accent-green: #3a4a1d;
    --gold-color: #D4AF37; 
    --gold-hover-light: #E5C55D;
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Merriweather', serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--primary-text);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* --- Header / Nav --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- Bank Details Box --- */
.bank-details-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--gold-color); /* Gold accent on the left */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.bank-details-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-details-box h3 i {
    color: var(--gold-color);
}

.bank-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}

.bank-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bank-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.bank-value {
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

/* Optional: Style for a clickable copy icon */
.copy-text {
    cursor: pointer;
    transition: color 0.2s;
}

.copy-text:hover {
    color: var(--gold-color);
}

.copy-text i {
    font-size: 0.85rem;
    margin-left: 5px;
    color: #999;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-text);
    font-weight: 700;
}

/* Header Button */
.btn-header {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--gold-color) 100%);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header:hover {
    background: linear-gradient(135deg, #333 0%, var(--gold-hover-light) 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.mobile-only {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* --- Main Content --- */
.page-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.page-subtitle {
    color: var(--secondary-text);
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Form Styling --- */
.donation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--primary-text);
    border-radius: 50px; /* Pill shape */
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea.form-input {
    border-radius: 20px;
    resize: vertical;
    min-height: 150px;
}

/* --- FILE UPLOAD STYLING --- */
.file-upload-container {
    width: 100%;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px 20px;
    border: 2px dashed #999; /* Dashed border */
    border-radius: 50px; /* Pill shape matching inputs */
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    background-color: #fafafa;
}

.file-label i {
    font-size: 1.2rem;
}

.file-label:hover {
    border-color: var(--gold-color);
    color: #a8851a; /* Darker gold for text readability */
    background-color: rgba(212, 175, 55, 0.05); /* Very light gold tint */
}


.submit-btn {
    background: linear-gradient(135deg, #000 0%, var(--gold-color) 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #222 0%, var(--gold-hover-light) 100%);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* --- Image Side --- */
.image-container {
    position: sticky;
    top: 20px;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    min-height: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Footer --- */
footer {
    padding: 60px 5% 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.footer-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #000;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.2s;
}

.social-icons a:hover {
    color: var(--gold-color);
    transform: translateY(-2px);
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #666;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    text-decoration: underline;
    color: #666;
    transition: color 0.3s;
}
.legal-links a:hover {
    color: var(--gold-color);
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet & Smaller Laptops */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr; 
    }
    
    .feature-image {
        min-height: 300px;
        max-height: 400px;
        order: -1; 
        margin-bottom: 30px;
    }

    .image-container {
        position: static;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        display: none; 
    }

    .nav-links.active {
        display: flex;
    }

    .desktop-only {
        display: none; 
    }

    .mobile-only {
        display: block; 
    }

    .page-title {
        font-size: 2.2rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .legal-links {
        flex-wrap: wrap;
    }
}