/* =========================================
HERO
========================================= */

.story-hero{

padding:180px 0 120px;

background:
linear-gradient(
rgba(15,35,55,.82),
rgba(15,35,55,.82)
),
url('../images/church.png');

background-size:cover;
background-position:center;

text-align:center;

}

.story-hero-content{

max-width:900px;
margin:auto;

}

.hero-subtitle{

display:inline-block;

color:#d4a017;

font-weight:700;

letter-spacing:4px;

text-transform:uppercase;

margin-bottom:20px;

}

.story-hero h1{

font-size:4.5rem;

line-height:1.2;

color:#fff;

margin-bottom:25px;

}

.story-hero p{

max-width:750px;

margin:auto;

font-size:1.15rem;

line-height:1.8;

color:#fff;

}


/* =========================================
FOUNDER
========================================= */

.founder-section{

padding:100px 0;

background:#fff;

}

.story-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.story-image img{

width:100%;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.section-label{

display:inline-block;

color:#d4a017;

font-weight:700;

letter-spacing:3px;

margin-bottom:15px;

}

.story-content h2{

margin-bottom:20px;

}

.story-content p{

margin-bottom:18px;

line-height:1.9;

}


/* =========================================
TIMELINE
========================================= */

.history-timeline{

padding:100px 0;

background:#f8fafc;

}

.timeline-container{

max-width:1000px;

margin:auto;

position:relative;

padding:20px 0;

}

.timeline-container::before{

content:"";

position:absolute;

top:0;

bottom:0;

left:50%;

transform:translateX(-50%);

width:4px;

background:#d4a017;

border-radius:10px;

}

.timeline-box{

position:relative;

width:45%;

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

margin-bottom:40px;

transition:.3s;

}

.timeline-box:hover{

transform:translateY(-6px);

}

.timeline-box:nth-child(odd){

margin-right:auto;

}

.timeline-box:nth-child(even){

margin-left:auto;

}

.timeline-box::before{

content:"";

position:absolute;

top:35px;

width:22px;

height:22px;

background:#d4a017;

border:4px solid #fff;

border-radius:50%;

box-shadow:0 0 0 4px #d4a017;

z-index:2;

}

.timeline-box:nth-child(odd)::before{

right:-56px;

}

.timeline-box:nth-child(even)::before{

left:-56px;

}

.year{

display:inline-block;

padding:8px 16px;

background:#d4a017;

color:#fff;

font-weight:700;

font-size:.9rem;

border-radius:50px;

margin-bottom:15px;

letter-spacing:1px;

}

.timeline-box h3{

color:#143a52;

margin-bottom:12px;

font-size:1.4rem;

}

.timeline-box p{

line-height:1.8;

color:#555;

margin:0;

}


/* =========================================
VISION
========================================= */

.vision-section{

padding:100px 0;

background:#143a52;

text-align:center;

}

.vision-section h2{

color:#fff;

margin-bottom:20px;

}

.vision-section p{

max-width:900px;

margin:auto;

line-height:2;

color:#dbe4ef;

}


/* =========================================
IMPACT
========================================= */

.impact-section{

padding:100px 0;

background:#fff;

}

.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);

}

.impact-card h3{

font-size:3rem;

color:#d4a017;

margin-bottom:10px;

}


/* =========================================
SCRIPTURE
========================================= */

.scripture-section{

padding:120px 0;

background:
linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.75)
),
url('../images/church.png');

background-size:cover;
background-position:center;

text-align:center;

}

.scripture-section h2{

font-size:3rem;

color:#fff;

margin-bottom:20px;

}

.scripture-section p{

color:#dbe4ef;

}


/* =========================================
CTA
========================================= */

.cta-section{

padding:100px 0;

background:#f8fafc;

text-align:center;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:30px;

flex-wrap:wrap;

}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.story-grid{

grid-template-columns:1fr;

}

.impact-grid{

grid-template-columns:1fr 1fr;

}

.story-hero h1{

font-size:3.5rem;

}

.timeline-box{

width:48%;

}

}

@media(max-width:768px){

.story-hero{

padding:150px 0 90px;

}

.story-hero h1{

font-size:2.6rem;

}

.impact-grid{

grid-template-columns:1fr;

}

.scripture-section h2{

font-size:2rem;

}

.timeline-container::before{

left:25px;

transform:none;

}

.timeline-box{

width:calc(100% - 70px);

margin-left:70px !important;

margin-right:0 !important;

}

.timeline-box::before{

left:-56px !important;

right:auto !important;

}

}