@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f1ed;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ea580c;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f5f1ed;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    height: auto;
}

.main-title {
    font-size: 2.5rem;
    color: #ea580c;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Left Section */
.left-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.description {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    line-height: 1.8;
    color: #555;
}

.direct-donation,
.questions {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

p {
    color: black
}

h2 {
    color: #ea580c;
}

.direct-donation h2,
.questions h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ea580c;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

.bank-details p {
    margin: 0.5rem 0;
    color: black;
}

.bank-details strong {
    color: #333;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: black;
}

.questions a {
    color: #ea580c;
    text-decoration: none;
}

.questions a:hover {
    text-decoration: underline;
}

/* Right Section - Donation Form */
.right-section {
    background-color: #e8e4e0;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.donation-form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ea580c;
}

/* Frequency Tabs */
.frequency-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #ea580c;
    color: #fff;
    border-color: #ea580c;
}

.tab-btn:hover {
    border-color: #ea580c;
}

/* Amount Section */
.amount-section {
    margin-bottom: 1.5rem;
}

.amount-section label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.currency-amount {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency-select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
}

.amount-buttons {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.amount-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.amount-btn:hover,
.amount-btn.active {
    background-color: #ea580c;
    color: #fff;
    border-color: #ea580c;
}

.custom-amount {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Donor Details */
.donor-details {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.donor-details h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-group input:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #ea580c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.submit-btn:hover {
    background-color: #a01830;
    transform: translateX(5px);
}

.arrow {
    font-size: 1.2rem;
}

/* Info Notes */
.info-notes ul {
    list-style: none;
    font-size: 0.85rem;
    color: black;
}

.info-notes li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .right-section {
        position: static;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .frequency-tabs {
        flex-direction: column;
    }

    .currency-amount {
        flex-direction: column;
    }

    .amount-buttons {
        flex-direction: row;
    }
}

.qr-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.qr-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
    width: 90%;
}

.qr-img {
    width: 200px;
    margin: 15px auto;
    border-radius: 10px;
}

.qr-content input {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.confirm-btn {
    background: #ea580c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.close-btn{
     background: #ea580c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.confirm-btn:hover {
    background: #d94c00;
}