/* ======================================================= */
/* ==           CSS CHO TRANG ĐÓNG GÓP            == */
/* ======================================================= */

.section-donate {
    background-color: #fcf8f4;
    /* Nền off-white */
    padding: 120px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}


.container-donate {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.donate-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    margin-bottom: 100px;
}

/* Cột thông tin chuyển khoản */
.donate-info {
    flex: 1;
}

.donate-info h3 {
    font-family: 'Title-One';
    font-size: 36px;
    color: #1A1A1A;
    margin-top: 0;
    margin-bottom: 24px;
}

.donate-info p {
    font-family: 'Text-One';
    font-size: 18px;
    color: #000000;
    margin: 8px 0;
}

.donate-info p strong {
    font-weight: 600;
}

/* Cột nhãn QR Code */
.donate-qr-label {
    font-family: 'Title-One';
    font-size: 24px;
    color: #1A1A1A;
}

/* Cột ảnh QR Code */
.donate-qr-image img {
    width: 180px;
    height: 180px;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
}

/* Lời cảm ơn */
.donate-thank-you {
    font-family: 'Title-One';
    font-style: italic;
    font-size: 28px;
    color: #000000;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .section-donate {
        padding-top: 200px;
        /* Tăng padding để không bị banner che */
    }

    .donate-box {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 60px;
    }

    .donate-qr-label {
        /* Xoay mũi tên lên trên mobile */
        transform: rotate(90deg);
        margin: -15px 0;
    }
}