
/* SECTION BACKGROUND */
.donation-options-section {
    width: 100%;
    background: #f7f7f7; /* very light gray */
    padding: 40px 0;
}

/* CONTAINER */
.donation-options-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* BASE CARD STYLE */
.donation-card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}


.donation-card:hover {
    transform: translateY(-4px);
}

/* CARD 1 — 35% WIDTH */
/* CARD 1 — ICON TOP, TEXT BOTTOM */
.card-1 {
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;   /* icon on top, text below */
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}
.donation-card-icon img {
    width: 45px;
}
.donation-card-icon img {
    width: 40px;
}

/* Hide mobile arrow on desktop */
.arrow-mobile { display: none; }

/* OTHER CARDS — EVEN WIDTH */
.card-2, .card-3, .card-4, .card-5 {
    flex: 1;
}

/* BARCODE */
.donation-barcode {
    width: 100%;
    max-width: 140px;
    margin: auto;
    display: block;
}

/* SMALL TEXT */
.donation-small-text {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* CARD LOGOS */
.card-logos img {
    width: 40px;
    margin: 5px;
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 768px) {

    .donation-options-container {
        flex-wrap: wrap;
    }

    /* CARD 1 FULL WIDTH */
    .card-1 {
        flex: 0 0 100%;
        justify-content: center;
        text-align: center;
    }


    /* Show DOWN arrow on mobile */
    .arrow-desktop { display: none; }
    .arrow-mobile { display: block; }

    /* CARDS 2–5 = 2 PER ROW */
    .card-2, .card-3, .card-4, .card-5 {
        flex: 0 0 calc(50% - 10px);
    }
}