/* =====================================================
   DONATE.CSS — matches Donation-Page1 prototype
   ===================================================== */

/* ===================== GRATITUDE ===================== */
.gratitude {
    padding: 24px 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.gratitude p {
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* ===================== WRAP / CARD ===================== */
.wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 60px 80px;
}

.card {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    animation: fadeUp .8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.card h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.card > p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ===================== AMOUNT BUTTONS ===================== */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 10px;
}

.amount-btn {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition: all .2s ease;
}

.amount-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.amount-btn.active {
    background: linear-gradient(135deg, #d60000, #a10000);
    border-color: rgba(255,0,0,0.6);
    box-shadow: 0 12px 35px rgba(214,0,0,0.3);
}

.impact-line {
    margin: 10px 0 24px;
    font-size: 13px;
    color: #999;
    font-style: italic;
    min-height: 18px;
}

/* ===================== INPUTS ===================== */
.field { margin-bottom: 18px; }

.field-input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, background .2s;
}

.field-input::placeholder { color: #555; }

.field-input:focus {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
}

/* ===================== CHECKBOX ===================== */
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 22px;
    font-size: 14px;
    color: #ccc;
}

.check-input {
    width: 18px;
    height: 18px;
    accent-color: #d60000;
    cursor: pointer;
    flex-shrink: 0;
}

/* ===================== STRIPE ===================== */
.stripe-error {
    display: none;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.3);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    color: #ff8080;
    margin-bottom: 14px;
    line-height: 1.5;
}

.payment-element-wrap {
    margin: 25px 0;
    min-height: 44px;
}

/* ===================== DONATE BUTTON ===================== */
.donate-btn {
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #ff0000, #a10000);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(214,0,0,0.35);
}

.donate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #777;
    align-items: center;
}

.trust-strip .sep { opacity: 0.4; }

/* ===================== NOTE ===================== */
.note {
    margin-top: 22px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 800px) {
    .hero         { padding: 140px 20px 60px; }
    .gratitude    { padding: 24px 20px 0; }
    .wrap         { padding: 40px 20px 60px; }
    .amount-grid  { grid-template-columns: repeat(2, 1fr); }
    .card         { padding: 28px 20px; }
    .hero h1      { font-size: 38px; }
}

@media (max-width: 440px) {
    .amount-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero h1      { font-size: 30px; }
}
