/* ==========================================
   Donation Page CSS
   ========================================== */
/* --- Hero Banner --- */
.donation-hero-section {
    /*background-color: var(--color-1);*/
    padding: 80px 0 140px 0; /* Extra padding so the form overlaps */
    position: relative;
    /*border-bottom: 6px solid var(--color-1);*/
}

.text-orange { color: var(--color-1) !important; }

/* --- Donation Form Container --- */
.donation-section {
    margin-top: -80px; /* Pulls form up over the dark hero banner */
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.donation-form-wrapper {
    border-top: 5px solid var(--color-1);
}

/* --- Campaign Info Box (NEW) --- */
.info-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- Custom Inputs --- */
.custom-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: var(--color-1);
    box-shadow: 0 0 0 0.25rem rgba(240, 78, 35, 0.15);
    outline: none;
}

/* --- Amount Toggle Grid --- */
.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates a clean 3x2 grid */
    gap: 15px;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr); /* 2x3 grid on small mobile */
    }
}

.amount-box {
    padding: 15px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-1);
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

/* Hover State */
.amount-box:hover {
    border-color: var(--color-1);
    color: var(--color-1);
    background-color: rgba(240, 78, 35, 0.03);
}

/* Active State */
.amount-box.active {
    background-color: var(--color-1);
    color: #ffffff;
    border-color: var(--color-1);
    box-shadow: 0 4px 10px rgba(240, 78, 35, 0.2);
}

/* --- Styled Custom Amount Input (The "Other" field) --- */
#amount {
    border: 2px solid var(--color-1);
    color: var(--color-1);
    font-size: 22px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(240, 78, 35, 0.08);
}

#amount::placeholder {
    color: #a0a0a0;
    font-size: 16px;
    font-weight: 500;
}

/* --- Submit Button --- */
.btn-theme-orange {
    background-color: var(--color-1);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-theme-orange:hover {
    background-color: var(--color-1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 78, 35, 0.2);
}




/* Main Section & Outer Wrapper */
.contribution-section {
    background-color: #fff;
}

.contribution-card {
    background-color: #fff;
    border: 1px solid var(--primary-blue);
    border-top: 5px solid var(--accent-orange-dark);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Title Styling */
.contribution-title {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.title-underline {
    width: 50px;
    height: 4px;
    background-color: var(--accent-orange-dark);
    border-radius: 2px;
}

/* Subheading Styling */
.support-heading {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* List Styling */
.support-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.support-list li {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--primary-blue);
    border-radius: 6px;
    padding: 14px 18px;
}

.list-icon {
    width: 28px;
    height: 28px;
    background-color: var(--accent-orange-dark);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* ==========================================
   CUSTOM SPACING CLASSES (No Bootstrap Spacing)
   ========================================== */

.custom-section-padding {
    padding: 60px 0;
}

.custom-card-padding {
    padding: 40px;
}

.custom-title-spacing {
    margin-bottom: 12px;
}

.custom-line-spacing {
    margin-bottom: 20px;
}

.custom-desc-spacing {
    margin-bottom: 24px;
}

.custom-subtitle-spacing {
    margin-bottom: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-section-padding {
        padding: 40px 0;
    }

    .custom-card-padding {
        padding: 24px 18px;
    }

    .contribution-title {
        font-size: 24px;
    }

    .support-heading {
        font-size: 18px;
    }

    .support-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-list li {
        font-size: 15px;
        padding: 12px 14px;
    }
}


  /* Donation Section Wrapper */
.donation-section {
    padding: 60px 20px;
    background-color: #fff;
    color: #000;
}

.donation-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid var(--color-1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header Styling */
.donation-header {
    text-align: center;
    margin-bottom: 30px;
}

.donation-header h2 {
    color: #000;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.donation-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-1);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Content & Typography */
.donation-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
}

.donation-email {
    color: var(--color-1);
    font-weight: 600;
    text-decoration: underline;
}

/* Donate Button */
.donation-action {
    text-align: center;
    margin: 30px 0;
}

.btn-donate {
    display: inline-block;
    background-color: var(--color-1);
    color: #fff;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-1);
}

.btn-donate:hover {
    background-color: #fff;
    color: #000;
}

/* Cheque Callout Box */
.donation-info-box {
    background-color: #fff;
    border-left: 4px solid var(--color-1);
    padding: 18px 22px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.donation-info-box p {
    margin: 0;
}

.donation-info-box a {
    color: var(--color-1);
    text-decoration: underline;
}

/* Rules Section */
.donation-rules {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.donation-rules h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #000;
}

.donation-rules ul {
    margin: 0;
    padding-left: 20px;
}

.donation-rules li {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #000;
}

.donation-rules li:last-child {
    margin-bottom: 0;
}

/* Footer Line */
.donation-footer {
    text-align: center;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 0;
    color: #000;
}
.donate-section .about-content-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
/* Mobile Responsive */
@media (max-width: 600px) {
    .donation-container {
        padding: 25px 20px;
    }
    .donation-header h2 {
        font-size: 1.75rem;
    }
    .btn-donate {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}




/* Main Section Wrapper */
.donation-methods-section {
    background: var(--off-white);
}

/* Top Intro Text Styling */
.custom-intro-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Card Styling */
.donation-card {
    background-color: #fff;
    border: 1px solid var(--primary-blue);
    border-top: 5px solid var(--accent-orange-dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon-box {
    width: 42px;
    height: 42px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.method-title {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.email-link {
    color: var(--accent-orange-dark);
    font-weight: 700;
    text-decoration: underline;
    word-break: break-all;
}

.email-link:hover {
    color: var(--primary-blue);
}

/* Thank You Message Box */
.thank-you-box {
    background-color: var(--primary-blue);
    border-left: 5px solid var(--accent-orange-dark);
    border-radius: 6px;
    text-align: center;
}

.thank-you-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* Guidelines Outer Box */
.guidelines-box {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px dashed var(--primary-blue);
    border-radius: 8px;
}

.guidelines-title {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.guidelines-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.guidelines-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.guidelines-list li:last-child {
    margin-bottom: 0;
}

.guidelines-list li::before {
    content: "•";
    color: var(--accent-orange-dark);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ==========================================
   CUSTOM SPACING CLASSES (No Bootstrap Spacing)
   ========================================== */

.custom-section-padding {
    padding: 60px 0;
}

.custom-intro-spacing {
    margin-bottom: 30px;
}

.custom-cards-spacing {
    margin-bottom: 30px;
}

.custom-card-col {
    margin-bottom: 20px;
}

.custom-card-padding {
    padding: 30px 24px;
}

.custom-icon-spacing {
    margin-bottom: 18px;
}

.custom-text-spacing {
    margin-bottom: 14px;
}

.custom-note-text {
    margin-bottom: 0;
}

.custom-thankyou-padding {
    padding: 20px 24px;
}

.custom-thankyou-spacing {
    margin-bottom: 30px;
}

.custom-guidelines-padding {
    padding: 24px 28px;
}

.custom-guidelines-title-spacing {
    margin-bottom: 14px;
}

/* Media Queries for Mobile/Tablet */
@media (min-width: 768px) {
    .custom-card-col {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .custom-section-padding {
        padding: 40px 0;
    }
    
    .method-title {
        font-size: 19px;
    }
    
    .thank-you-text {
        font-size: 16px;
    }
    
    .custom-card-padding,
    .custom-guidelines-padding {
        padding: 20px;
    }
}