/* ====================================
   DONATION SECTION
==================================== */

.donation-section{
    position:relative;
    z-index:20;

    max-width:700px;
    margin:-90px auto 70px;

    padding:0 15px;
}

.donation-card{
    display:grid;
    grid-template-columns:1fr 1fr;

    background:#fff;
    border-radius:14px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* LEFT SIDE */

.cause-side{
    display:flex;
    min-height:220px;
}

.cause-image{
    width:95%;
   
}

.cause-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    margin-right: 50px;
}

.cause-content{
    width:150%;
    background:#d9ac45;

    padding:35px;

    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.featured-badge{
    position:absolute;
    top:0;
    right:0;

    background:#000;
    color:#fff;

    font-size:.65rem;
    font-weight:700;

    padding:8px 14px;
    text-transform:uppercase;
}

.cause-content h2{
    color:#fff;
    font-size:1.35rem;
    line-height:1.05;
    margin-bottom:15px;
    text-transform:uppercase;
}

.cause-progress{
    color:#fff;
    font-size:.85rem;
    margin-bottom:18px;
}

.learn-more-btn{
    display:inline-block;
    width:max-content;

    padding:8px 18px;

    border:2px solid #fff;

    color:#fff;
    text-decoration:none;
    font-size:.8rem;
    font-weight:600;
}

/* RIGHT SIDE */

.donate-side{
    background:#fafafa;

    padding:30px 10px;

    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.donate-badge{
    position:absolute;
    top:0;
    right:0;

    background:#000;
    color:#fff;

    padding:8px 14px;

    font-size:.65rem;
    font-weight:700;
}

.donation-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    margin-bottom:18px;
}

.donation-tabs button{
    border:none;
    background:none;

    font-size:.85rem;
    cursor:pointer;
}

.divider{
    width:2px;
    height:16px;
    background:#000;
}

.donation-input{
    width:100%;
    height:42px;

    border:1px solid #ddd;

    padding:0 12px;

    margin-bottom:15px;
}

.donation-note{
    text-align:center;
    font-size:.8rem;
    line-height:1.5;
    margin-bottom:18px;
}

.donate-btn{
    width:140px;
    height:42px;

    margin:auto;

    border:none;

    background:#21afb4;
    color:#fff;

    font-size:.8rem;
    font-weight:700;

    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

    .donation-section{
        margin:40px auto;
        max-width:420px;
    }

    .donation-card{
        grid-template-columns:1fr;
    }

    .cause-side{
        flex-direction:column;
    }

    .cause-image{
        width:100%;
        height:180px;
    }

    .cause-content{
        width:100%;
    }

    .featured-badge,
    .donate-badge{
        position:static;
        width:max-content;
        margin-bottom:12px;
    }

    .donate-btn{
        width:100%;
    }
}

.nav-line {
    background-color: black;
    height: 30px;
}

.nav-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}