/* =========================================
DONATE HERO
========================================= */

.donate-hero{

padding:180px 0 120px;

background:
linear-gradient(
rgba(15,35,55,.82),
rgba(15,35,55,.82)
),
url('../images/donate-hero.jpg');

background-size:cover;
background-position:center;

text-align:center;

}

.hero-subtitle{

display:inline-block;

color:#d4a017;

font-weight:700;

letter-spacing:4px;

text-transform:uppercase;

margin-bottom:20px;

}

.donate-hero h1{

font-size:4.5rem;

line-height:1.2;

color:#ffffff;

margin-bottom:25px;

}

.donate-hero p{

max-width:750px;

margin:auto;

font-size:1.15rem;

line-height:1.8;

color:#ffffff;

}


/* =========================================
SECTION TITLE
========================================= */

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

display:inline-block;

color:#d4a017;

font-weight:700;

letter-spacing:3px;

text-transform:uppercase;

margin-bottom:10px;

}

.section-title h2{

margin-top:10px;

}


/* =========================================
WHY GIVE
========================================= */

.why-give{

padding:100px 0;

background:#ffffff;

}

.give-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:25px;

}

.give-card{

background:#f8fafc;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.give-card:hover{

transform:translateY(-8px);

}

.give-card i{

font-size:42px;

color:#d4a017;

margin-bottom:20px;

}

.give-card h3{

margin-bottom:15px;

}

.give-card p{

line-height:1.8;

}
.partner-btn{

display:flex;

justify-content:center;

margin-top:30px;

}


/* =========================================
MINISTRY AREAS
========================================= */

.causes{

padding:100px 0;

background:#f8fafc;

}

.causes-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

}

.cause-card{

background:#ffffff;

padding:35px;

border-radius:20px;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.cause-card:hover{

transform:translateY(-8px);

}

.cause-card h3{

margin-bottom:15px;

color:#143a52;

}

.cause-card p{

line-height:1.8;

}


/* =========================================
WAYS TO GIVE
========================================= */

.giving-methods{

padding:100px 0;

background:#ffffff;

}

.methods-card{

max-width:900px;

margin:auto;

padding:50px;

background:#f8fafc;

border-radius:25px;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

}

.donation-method{

margin:30px 0;

text-align:center;

}

.donation-method h4{

font-size:1.4rem;

color:#d4a017;

margin-bottom:15px;

}

.donation-method p{

margin-bottom:10px;

line-height:1.8;

}

.methods-card hr{

border:none;

height:1px;

background:#dddddd;

margin:30px 0;

}


/* =========================================
IMPACT
========================================= */

.impact{

padding:100px 0;

background:#ffffff;

}

.impact-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}

.impact-card{

background:#f8fafc;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.impact-card:hover{

transform:translateY(-8px);

}

.impact-card h3{

font-size:3rem;

color:#d4a017;

margin-bottom:10px;

}

.impact-card p{

line-height:1.6;

}


/* =========================================
FINAL CTA
========================================= */

.donate-cta{

padding:100px 0;

background:#143a52;

text-align:center;

}

.donate-cta h2{

color:#ffffff;

margin-bottom:20px;

}

.donate-cta p{

max-width:800px;

margin:auto;

margin-bottom:30px;

line-height:1.8;

color:#dbe4ef;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.donate-hero h1{

font-size:3.5rem;

}

.give-grid{

grid-template-columns:1fr;

}

.causes-grid{

grid-template-columns:1fr;

}

.impact-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.donate-hero{

padding:150px 0 90px;

}

.donate-hero h1{

font-size:2.6rem;

}

.methods-card{

padding:30px;

}

.impact-grid{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

}