/* ============================
   DONATION PAGE — donation.css
   ============================ */

section { padding: 80px 20px; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F21414;
    background: rgba(242,20,20,0.08);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.22;
    display: inline-block;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(135deg, #F21414, #D89A1D);
    border-radius: 10px;
    margin: 12px auto 0;
}

.section-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* HERO */
.donation-hero {
    min-height: 68vh;
    background: url('../images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.donation-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,4,4,0.65) 0%, rgba(0,0,0,0.76) 100%);
}

.donation-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 780px;
}

.hero-badge {
    display: inline-block;
    background: rgba(216,154,29,0.92);
    color: #1a0a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.donation-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.14;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.donation-hero-content h1 span { color: #F2C14E; }

.donation-hero-content p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.90);
    margin-bottom: 30px;
}

.cta-btn-hero {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-radius: 32px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(242,20,20,0.48);
    transition: all 0.3s ease;
}

.cta-btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(242,20,20,0.58);
}

/* IMPACT NUMBERS */
.impact-numbers { background: #FFF9F0; }

.impact-numbers .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 0;
}

.impact-card {
    background: white;
    border-radius: 22px;
    padding: 32px 20px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.07);
    border: 1.5px solid #f0f0f0;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F21414, #D89A1D);
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(242,20,20,0.13);
    border-color: #ffd0d0;
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: #F21414;
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    line-height: 1.4;
}

.impact-icon { font-size: 28px; margin-top: 12px; }

/* DONATION TIERS */
.donation-tiers { background: #fff; }

.donation-tiers .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 0;
}

.tier-card {
    background: white;
    border-radius: 24px;
    padding: 34px 22px;
    border: 1.5px solid #f0f0f0;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(242,20,20,0.14);
    border-color: #ffd0d0;
}

.tier-card.featured {
    border: 2px solid #F21414;
    background: linear-gradient(180deg, #FFF5F5, #fff);
    transform: scale(1.04);
}

.tier-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.tier-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.tier-emoji { font-size: 38px; margin-bottom: 14px; line-height: 1; }

.tier-amount {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 900;
    color: #F21414;
    line-height: 1;
}

.tier-period {
    font-size: 13px;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 16px;
}

.tier-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.4;
}

.tier-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tier-benefits li {
    font-size: 13.5px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f8f0f0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.tier-benefits li::before {
    content: '✓';
    color: #F21414;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.tier-benefits li:last-child { border-bottom: none; }

.donate-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 28px;
    border: 2px solid #F21414;
    color: #F21414;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.donate-btn:hover,
.donate-btn.donate-btn-primary {
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(242,20,20,0.36);
}

/* TRANSPARENCY */
.transparency { background: #FFF9F0; }

.transparency .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breakdown-container {
    max-width: 720px;
    width: 100%;
}

.breakdown-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border: 1.5px solid #f0f0f0;
    text-align: left;
    transition: transform 0.25s ease;
}

.breakdown-item:hover { transform: translateX(5px); }

.item-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.item-text { flex: 1; }

.item-title {
    font-size: 16.5px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.item-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* PAYMENT METHODS */
.payment-methods { background: #fff; }

.payment-methods .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    width: 100%;
    margin-bottom: 30px;
}

.method-card {
    background: #FFF9F0;
    border-radius: 22px;
    padding: 32px 26px;
    border: 1.5px solid #f5d9b2;
    text-align: center;
    transition: all 0.32s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(242,20,20,0.12);
    border-color: #F21414;
}

.method-icon { font-size: 38px; margin-bottom: 16px; }

.method-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.method-detail {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}

.method-detail code {
    display: inline-block;
    background: rgba(242,20,20,0.08);
    color: #C90E0E;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 6px;
    word-break: break-all;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    border: 2px dashed #F21414;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #F21414;
    font-weight: 700;
    margin: 0 auto 18px;
    text-align: center;
    padding: 10px;
    line-height: 1.4;
}

.method-btn {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(242,20,20,0.28);
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242,20,20,0.40);
}

/* TAX BOX */
.tax-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #e6f7ec;
    border: 1.5px solid #a8d5b5;
    border-radius: 16px;
    padding: 18px 28px;
    max-width: 640px;
    text-align: left;
    margin-top: 24px;
}

.tax-icon { font-size: 26px; flex-shrink: 0; }

.tax-text {
    font-size: 14px;
    color: #1a6b32;
    line-height: 1.65;
    font-weight: 500;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #1a0505, #3d0f0f);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.07;
}

.cta-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 18px;
    line-height: 1.26;
}

.cta-box h2 span { color: #F2C14E; }

.cta-box p {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.btn-primary {
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    box-shadow: 0 8px 28px rgba(242,20,20,0.44);
}

.btn-cta.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(242,20,20,0.56);
}

.btn-cta.btn-secondary {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: white;
    box-shadow: 0 8px 24px rgba(37,211,102,0.36);
}

.btn-cta.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37,211,102,0.50);
}

.cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    margin: 0;
}

/* CONTACT STRIP */
.contact-strip {
    background: linear-gradient(135deg, #D89A1D, #F2C14E);
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 16.5px;
    font-weight: 700;
    color: #1a0a00;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .tiers-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-card.featured { transform: scale(1); }
    .tier-card.featured:hover { transform: translateY(-6px); }
    .methods-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .donation-hero { min-height: auto; padding: 100px 20px 70px; }
    .donation-hero-content h1 { font-size: 32px; }
    .donation-hero-content p { font-size: 16px; }
    .section-heading { font-size: 28px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .tiers-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .breakdown-item { flex-direction: column; text-align: center; }
    .cta-box h2 { font-size: 30px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta { width: 100%; max-width: 300px; justify-content: center; }
    .tax-box { flex-direction: column; text-align: center; }
    section { padding: 60px 20px; }
}

@media (max-width: 480px) {
    .impact-grid { grid-template-columns: 1fr; }
    .donation-hero-content h1 { font-size: 26px; }
}
