:root{
--gold:#D4A357;
--gold-light:#f2c66d;
--dark:#070b12;
--dark2:#111827;
--card:#141c28;
--text:#f5f5f5;
--muted:#bbbbbb;
--green:#4A7C59;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:radial-gradient(circle at center,#111 0%,#000 70%);
color:var(--text);
line-height:1.7;
}

/* HEADER */

.site-header{
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.08);
}

.header-container{
max-width:1200px;
margin:auto;
padding:14px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:48px;
}

.desktop-nav{
display:flex;
gap:24px;
}

.desktop-nav a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.desktop-nav a:hover{
color:var(--gold);
}

/* HERO */

.hero{
    padding:80px 20px;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.85),
        rgba(0,0,0,.95)
    ),
    url("https://www.kjvbiblestories.com/images/donation-bg.jpg") center/cover no-repeat;

    min-height:560px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.hero h1{
font-family:'Merriweather',serif;
font-size:4rem;
margin-bottom:24px;
color:white;
text-shadow:0 2px 10px rgba(0,0,0,.5);
}

.hero p{
font-size:1.25rem;
color:#ddd;
max-width:720px;
margin:auto;
}

.hero-scripture{
margin-top:40px;
font-style:italic;
color:var(--gold);
font-size:1.1rem;
}

/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:90px 20px;
}

/* SECTION TITLES */

h2{
font-family:'Merriweather',serif;
font-size:2.5rem;
text-align:center;
margin-bottom:50px;
color:white;
}

/* IMPACT */

.impact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.impact-card{
background:rgba(255,255,255,.96);
border:1px solid rgba(255,255,255,.25);
padding:40px;
border-radius:20px;
text-align:center;
backdrop-filter:blur(6px);
box-shadow:0 8px 24px rgba(0,0,0,.25);
color:#222;
}

.icon{
font-size:3rem;
margin-bottom:20px;
}

.impact-card h3{
margin-bottom:15px;
color:var(--gold);
}

/* DONATIONS */

.donation-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.donation-card{
background:linear-gradient(
to bottom,
rgba(255,255,255,.98),
rgba(248,248,248,.96)
);

border:1px solid rgba(255,255,255,.4);

padding:45px 35px;
border-radius:20px;
text-align:center;

backdrop-filter:blur(8px);

box-shadow:
0 10px 30px rgba(0,0,0,.28),
0 2px 8px rgba(0,0,0,.12);

color:#222;
}

.donation-card.featured{
border:2px solid var(--gold);
box-shadow:0 0 30px rgba(212,163,87,.15);
}

.donation-card h3{
font-size:1.8rem;
margin-bottom:15px;
color:var(--gold);
}

.donation-card p{
color:#555;
}

.impact-card p{
color:#555;
}

.donation-card h3,
.impact-card h3{
color:#0B2346;
}

.amount-buttons{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin:30px 0;
}

.amount-btn{
background:#f3f3f3;
color:#222;
border:none;
padding:12px 18px;
border-radius:40px;
cursor:pointer;
font-weight:700;
transition:.3s;
}

.amount-btn:hover{
background:var(--gold);
color:black;
}

input{
width:100%;
padding:15px;
border-radius:10px;
border:1px solid #ddd;
margin-bottom:25px;
background:white;
color:#222;
font-size:1rem;
}

/* BUTTONS */

.payment-buttons{
display:flex;
flex-direction:column;
gap:15px;
}

.stripe-btn,
.paypal-btn,
.prayer-btn{
padding:16px;
border-radius:10px;
text-decoration:none;
font-weight:700;
border:none;
cursor:pointer;
transition:.3s;
display:block;
}

.stripe-btn{
background:#635BFF;
color:white;
}

.paypal-btn{
background:#0070ba;
color:white;
}

.prayer-btn{
background:var(--green);
color:white;
}

.stripe-btn:hover,
.paypal-btn:hover,
.prayer-btn:hover{
transform:translateY(-2px);
opacity:.95;
}

/* SCRIPTURE */

.scripture-section{
padding:20px 20px 100px;
}

.scripture-box{
max-width:900px;
margin:auto;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:60px;
border-radius:24px;
text-align:center;
}

.verse{
font-family:'Merriweather',serif;
font-size:1.8rem;
margin-bottom:20px;
}

.reference{
color:var(--gold);
font-weight:700;
}

/* FOOTER */

.site-footer{
background:#05070c;
padding:50px 20px;
text-align:center;
color:#999;
border-top:1px solid rgba(255,255,255,.05);
}

.footer-logo{
font-family:'Merriweather',serif;
font-size:1.5rem;
color:white;
margin-bottom:20px;
}

.footer-links{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:20px;
flex-wrap:wrap;
}

.footer-links a{
color:#ddd;
text-decoration:none;
}

.footer-links a:hover{
color:var(--gold);
}

/* MOBILE */

@media(max-width:900px){

.desktop-nav{
display:none;
}

.hero h1{
font-size:2.6rem;
}

.impact-grid,
.donation-grid{
grid-template-columns:1fr;
}

.container{
padding:70px 20px;
}

.scripture-box{
padding:40px 25px;
}

}