/* ==========================================================
   FEED MY SHEEP FOUNDATION
   ABOUT PAGE STYLES
========================================================== */


/* ==========================================================
   HERO SECTION
========================================================== */

.about-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.about-hero-background {
    position: absolute;
    inset: 0;
}


.about-hero-background img {
    width:100%;
    height:100%;
    object-fit:cover;
}


.about-overlay {
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(20,36,58,.95),
        rgba(20,36,58,.70),
        rgba(20,36,58,.25)
    );
}


.about-hero-container {
    position:relative;
    z-index:2;
    width:min(1200px,90%);
    margin:auto;
}


.about-hero-text {
    max-width:680px;
    color:white;
}


.about-hero-text h1 {

    font-family:'Playfair Display', serif;

    font-size:76px;

    line-height:1.05;

    margin:25px 0;

}


.about-hero-text h1 span {

    color:#c7a15a;

}


.about-hero-text p {

    font-size:21px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    margin-bottom:40px;

}





/* ==========================================================
   FOUNDER STORY
========================================================== */


.founder-section {

    background:white;

}



.founder-grid {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}



.founder-image {

    position:relative;

}



.founder-image img {

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:12px;

}



.founder-badge {

    position:absolute;

    right:-40px;

    bottom:45px;

    width:250px;

    background:white;

    padding:35px;

    text-align:center;

    box-shadow:
    0 20px 45px rgba(0,0,0,.15);

    border-top:5px solid #c7a15a;

}



.founder-badge i {

    color:#c7a15a;

    font-size:35px;

}


.founder-badge p {

    font-family:'Playfair Display',serif;

    font-size:30px;

    margin:15px 0 5px;

}



.founder-badge span {

    color:#777;

}



.founder-content h2 {

    font-family:'Playfair Display',serif;

    font-size:48px;

    color:#17283d;

    line-height:1.2;

    margin:25px 0;

}



.founder-content p {

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:22px;

}



.scripture-box {

    font-family:'Playfair Display',serif;

    font-size:42px;

    font-style:italic;

    color:#c7a15a;

    margin:25px 0;

}






/* ==========================================================
   FAITH BANNER
========================================================== */


.faith-banner {

    background:

    linear-gradient(
        135deg,
        #16283d,
        #244467
    );

    padding:100px 20px;

    text-align:center;

    color:white;

}


.faith-banner i {

    font-size:45px;

    color:#c7a15a;

    margin-bottom:25px;

}



.faith-banner h2 {

    font-family:'Playfair Display',serif;

    font-size:70px;

    margin:10px 0 25px;

}



.faith-banner p {

    max-width:750px;

    margin:auto;

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.9);

}





/* ==========================================================
   VALUES SECTION
========================================================== */


.values-section {

    background:#f8f7f3;

}



.values-grid {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}



.value-card {

    background:white;

    padding:40px 30px;

    text-align:center;

    border-radius:14px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.07);

    transition:.3s ease;

}


.value-card:hover {

    transform:translateY(-8px);

}



.value-icon {

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#c7a15a;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}



.value-card h3 {

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#17283d;

}



.value-card p {

    color:#666;

    line-height:1.7;

}






/* ==========================================================
   WHY WE EXIST
========================================================== */


.why-section {

    padding:100px 0;

}



.why-grid {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}



.why-content h2 {

    font-family:'Playfair Display',serif;

    font-size:48px;

    color:#17283d;

    margin:25px 0;

}



.why-content p {

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}



.why-image img {

    width:100%;

    height:520px;

    object-fit:cover;

    border-radius:12px;

}
/* ==========================================================
   TIMELINE SECTION
========================================================== */


.timeline-section {

    background:white;

}



.timeline {

    max-width:900px;

    margin:60px auto 0;

    position:relative;

}



.timeline:before {

    content:"";

    position:absolute;

    left:40px;

    top:0;

    bottom:0;

    width:3px;

    background:#c7a15a;

}



.timeline-item {

    display:flex;

    gap:35px;

    margin-bottom:55px;

    position:relative;

}



.timeline-number {

    flex-shrink:0;

    width:80px;

    height:80px;

    border-radius:50%;

    background:#17283d;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-family:'Playfair Display',serif;

    font-size:28px;

    position:relative;

    z-index:2;

}



.timeline-content {

    background:#f8f7f3;

    padding:30px;

    border-radius:12px;

    flex:1;

}



.timeline-content h3 {

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#17283d;

    margin-bottom:10px;

}



.timeline-content p {

    color:#555;

    line-height:1.7;

}







/* ==========================================================
   WESTERN NEW YORK SECTION
========================================================== */


.region-section {

    background:

    linear-gradient(
        rgba(23,40,61,.93),
        rgba(23,40,61,.93)
    ),
    url('/public/assets/fmshero.jpg');

    background-size:cover;

    background-position:center;

    padding:100px 20px;

    color:white;

    text-align:center;

}



.region-content {

    max-width:850px;

    margin:auto;

}



.region-content h2 {

    font-family:'Playfair Display',serif;

    font-size:50px;

    margin:25px 0;

}



.region-content p {

    font-size:19px;

    line-height:1.8;

    color:rgba(255,255,255,.9);

}



.county-grid {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:50px;

}



.county-grid div {

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    padding:20px;

    border-radius:8px;

    font-size:18px;

    font-weight:600;

}







/* ==========================================================
   LEADERSHIP SECTION
========================================================== */


.leadership-section {

    background:#f8f7f3;

}



.leadership-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:50px;

}



.leader-card {

    background:white;

    padding:35px;

    text-align:center;

    border-radius:14px;

    box-shadow:

    0 15px 35px rgba(0,0,0,.08);

}



.leader-photo {

    width:150px;

    height:150px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:5px solid #c7a15a;

}



.leader-photo img {

    width:100%;

    height:100%;

    object-fit:contain;

}



.leader-card h3 {

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#17283d;

}



.leader-card p {

    color:#666;

}







/* ==========================================================
   FINAL CTA
========================================================== */


.about-cta {

    position:relative;

    background:

    url('/public/assets/fmshandsshaking.jpg');

    background-size:cover;

    background-position:center;

    padding:120px 20px;

    color:white;

    text-align:center;

}



.about-cta-overlay {

    position:absolute;

    inset:0;

    background:

    rgba(18,35,55,.88);

}



.about-cta .container {

    position:relative;

    z-index:2;

}



.about-cta-content {

    max-width:850px;

    margin:auto;

}



.about-cta h2 {

    font-family:'Playfair Display',serif;

    font-size:60px;

    margin:25px 0;

}



.about-cta p {

    font-size:21px;

    line-height:1.8;

    color:rgba(255,255,255,.9);

    margin-bottom:40px;

}







/* ==========================================================
   TABLET
========================================================== */


@media(max-width:1100px){


.about-hero-text h1 {

    font-size:58px;

}


.values-grid {

    grid-template-columns:repeat(2,1fr);

}



.founder-grid,
.why-grid {

    grid-template-columns:1fr;

}



.founder-image img {

    height:500px;

}



.founder-badge {

    right:20px;

}



.county-grid {

    grid-template-columns:repeat(2,1fr);

}



.leadership-grid {

    grid-template-columns:1fr;

}


}







/* ==========================================================
   MOBILE
========================================================== */


@media(max-width:650px){


.about-hero {

    min-height:650px;

}



.about-hero-text h1 {

    font-size:42px;

}



.about-hero-text p {

    font-size:17px;

}



.btn-row {

    flex-direction:column;

    align-items:stretch;

}



.founder-image img {

    height:380px;

}



.founder-badge {

    position:relative;

    right:auto;

    bottom:auto;

    margin:-30px auto 0;

}



.founder-content h2 {

    font-size:36px;

}



.scripture-box {

    font-size:32px;

}



.faith-banner h2 {

    font-size:45px;

}



.faith-banner p {

    font-size:18px;

}



.values-grid {

    grid-template-columns:1fr;

}



.why-content h2 {

    font-size:36px;

}



.why-image img {

    height:350px;

}



.timeline:before {

    left:25px;

}



.timeline-item {

    gap:20px;

}



.timeline-number {

    width:55px;

    height:55px;

    font-size:20px;

}



.timeline-content {

    padding:20px;

}



.county-grid {

    grid-template-columns:1fr;

}



.region-content h2 {

    font-size:36px;

}



.about-cta h2 {

    font-size:42px;

}


}
