/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background-color: #5a189a;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
}

.nav-links a:hover {
    text-decoration: underline;
}

.donate-link {
    background-color: #ffd60a;
    color: #000 !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        background-color: #5a189a;
        padding: 15px;
    }

    .nav-links li {
        margin: 12px 0;
    }
}




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f6f7fb;
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #5a189a;
    color: white;
}

.logo {
    font-size: 1.3em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
}

.nav-links a.active {
    text-decoration: underline;
}

.donate-link {
    background-color: #ffd60a;
    color: #000 !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
}

.hamburger {
    display: none;
    font-size: 1.6em;
    cursor: pointer;
}

/* ===== CONTACT ===== */
.contact-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.contact-container h1 {
    color: #5a189a;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 30px;
    color: #555;
}

.card {
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h2 {
    color: #5a189a;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.card a {
    color: #5a189a;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    text-decoration: underline;
}

.hint {
    font-size: 0.9em;
    color: #777;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #5a189a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
}


.form-cta {
    text-align: center;
    margin-top: 40px;
}

.form-note {
    font-size: 1.05em;
    margin-bottom: 20px;   /* 👈 key line */
    color: #333;
}

.donate-form-btn {
    display: inline-block; /* 👈 prevents overlap */
    padding: 14px 32px;
    background-color: #ffd60a;
    color: #000;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
}

.donate-form-btn:hover {
    background-color: #ffbe0b;
}

.qr-donation-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.qr-donation-section h2 {
    color: #5a189a;
    margin-bottom: 15px;
}

.qr-caption {
    font-size: 1.05em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.qr-box img {
    width: 220px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fafafa;
}

.qr-note {
    margin-top: 15px;
    font-size: 0.95em;
    color: #666;
}

.solar-project-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.solar-project-section h2 {
    color: #5a189a;
    margin-bottom: 20px;
    text-align: center;
}

.solar-text {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.highlight-solar {
    background-color: #f1eaff;
    padding: 15px;
    border-left: 5px solid #7b2cbf;
    border-radius: 6px;
}

.solar-images {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.solar-images img {
    width: 320px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fafafa;
}

.solar-note {
    text-align: center;
    font-size: 1em;
    color: #555;
    margin-top: 20px;
}

/* ===== Footer Styling ===== */

footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px;
    text-align: center;
}

footer h3 {
    color: #ffd60a;
    margin-bottom: 15px;
}

.bank-details {
    margin-top: 20px;
    font-size: 1.05em;
}

footer p {
    margin: 8px 0;
}
