/* =========================
   DONATE PAGE
========================= */


/* HERO */


.donate-hero{

height:45vh;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url("../images/donation.jpg");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

}



.donate-hero .hero-content{

color:white;

max-width:750px;

padding:20px;

}



.hero-content h1{

font-size:48px;

margin-bottom:20px;

}



.hero-content p{

font-size:18px;

line-height:1.7;

}



/* DONATION SECTION */


.donation-section{

padding:80px 10%;

text-align:center;

}



.donation-section h2{

font-size:38px;

color:var(--brown);

margin-bottom:50px;

}



.donation-container{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:40px;

}




.donation-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}



.donation-card:hover{

transform:translateY(-8px);

}



.donation-card h3{

font-size:28px;

color:var(--brown);

margin-bottom:20px;

}




/* MPESA */


.mpesa-card{

border-top:8px solid #00A651;

}



.copy-box{

display:flex;

justify-content:space-between;

align-items:center;

background:#eefcf2;

border:2px dashed #00A651;

padding:20px;

border-radius:12px;

margin:25px 0;

}



#tillNumber{

font-size:35px;

font-weight:bold;

color:#00A651;

}



.copy-box button{

background:#00A651;

color:white;

border:none;

padding:12px 25px;

border-radius:8px;

cursor:pointer;

}




/* PAYPAL */


.paypal-card{

border-top:8px solid #0070BA;

}



.paypal-btn{

display:inline-block;

background:#0070BA;

color:white;

padding:15px 35px;

border-radius:30px;

text-decoration:none;

margin-top:25px;

font-weight:bold;

}



.paypal-btn:hover{

background:#003087;

}




/* IMPACT */


.impact{

padding:80px 10%;

text-align:center;

}



.impact h2{

color:var(--brown);

font-size:35px;

margin-bottom:40px;

}



.impact-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}



.impact-grid div{

background:white;

padding:35px;

border-radius:15px;

box-shadow:
0 8px 20px rgba(0,0,0,.08);

}




/* THANK YOU */


.thank-you{

background:var(--brown);

color:white;

padding:80px 10%;

text-align:center;

}



.thank-you p{

max-width:700px;

margin:20px auto;

line-height:1.8;

}




@media(max-width:900px){


.hero-content h1{

font-size:35px;

}



.copy-box{

flex-direction:column;

gap:15px;

}


}