*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{
    background:#f8fbff;
    color:#1e293b;
    overflow-x:hidden;
    line-height:1.7;
}



/* NAVIGATION */


nav{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(12px);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 60px;

    z-index:1000;

    box-shadow:0 2px 20px rgba(0,0,0,0.08);

}



.logo-container{

    display:flex;
    align-items:center;
    gap:12px;

}



.logo{

    width:55px;
    height:55px;
    object-fit:contain;

}



.logo-container h2{

    font-size:18px;
    color:#0f4c81;

}



nav ul{

    display:flex;
    list-style:none;
    gap:30px;

}



nav ul li a{

    text-decoration:none;
    color:#1e293b;
    font-weight:500;
    transition:.3s;

}



nav ul li a:hover{

    color:#1e88e5;

}





/* HERO */


.hero{
    height:100vh;
    background-image:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("images/church\ image.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
}







.hero-content{

    position:relative;
    z-index:2;

    color:white;

    max-width:900px;

    padding:20px;

}



.hero h1{

    font-size:4rem;

    margin-bottom:15px;

    font-weight:700;

}



.tagline{

    font-size:1.5rem;

    color:#cce5ff;

    margin-bottom:20px;

    font-weight:600;

}



.hero p{

    font-size:1.1rem;

    max-width:750px;

    margin:auto;

}





/* BUTTONS */


.hero-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}



.btn{

    padding:14px 32px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}



.primary{

    background:#1e88e5;

    color:white;

}



.primary:hover{

    background:#1565c0;

    transform:translateY(-3px);

}



.secondary{

    border:2px solid white;

    color:white;

}



.secondary:hover{

    background:white;

    color:#0f4c81;

}





/* GENERAL SECTIONS */


.section{

    padding:100px 10%;

}



.section h2{

    text-align:center;

    margin-bottom:40px;

    color:#0f4c81;

    font-size:2.5rem;

}





/* ABOUT */


.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}



.about-text p{

    margin-bottom:20px;

    font-size:1.05rem;

}







/* MISSION */


.mission-section{

    background:#eef6ff;

    text-align:center;

    padding:100px 10%;

}



.mission-section h2{

    color:#0f4c81;

    font-size:2.5rem;

    margin-bottom:30px;

}



.mission-section p{

    max-width:900px;

    margin:auto;

    font-size:1.15rem;

}



.verse-reference{

    margin-top:20px!important;

    font-weight:600;

    color:#1976d2;

}





/* VISION */


.vision-section{

    background:linear-gradient(135deg,#0f4c81,#1976d2);

    color:white;

    text-align:center;

    padding:100px 10%;

}



.vision-section h2{

    color:white;

    margin-bottom:30px;

    font-size:2.5rem;

}



.vision-section p{

    max-width:1000px;

    margin:auto;

    font-size:1.1rem;

}







/* MOTTO */


.motto-section{

    background:white;

    text-align:center;

    padding:100px 10%;

}



.motto-section h2{

    color:#0f4c81;

    font-size:2.5rem;

    margin-bottom:30px;

}



.motto-section p{

    max-width:900px;

    margin:auto;

    font-size:1.2rem;

}








/* PASTOR GALLERY */


.pastor-gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-bottom:40px;

}



.pastor-card img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.4s;

}



.pastor-card img:hover{

    transform:translateY(-10px);

}



.pastor-description{

    text-align:center;

    max-width:900px;

    margin:auto;

    font-size:1.1rem;

}







/* SERVICES */


.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}



.service-card{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}



.service-card:hover{

    transform:translateY(-10px);

}



.service-card h3{

    color:#0f4c81;

    margin-bottom:15px;

}







/* SCRIPTURES */


.scripture-section{

    background:#eef6ff;

    padding:100px 10%;

    text-align:center;

}



.scripture-section h2{

    color:#0f4c81;

    font-size:2.5rem;

    margin-bottom:40px;

}



.verse-card{

    background:white;

    max-width:900px;

    margin:25px auto;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.verse-card h3{

    color:#1976d2;

    margin-bottom:15px;

}







/* CONTACT */


.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}



.contact-card{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.contact-card h3{

    color:#1976d2;

    margin-bottom:15px;

}





/* FOOTER */


footer{

    background:#082349;

    color:white;

    text-align:center;

    padding:30px;

}







/* ANIMATION */


.section,
.service-card,
.contact-card,
.verse-card,
.pastor-card{

    animation:fadeUp 1s ease;

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}







/* MOBILE */


@media(max-width:900px){


nav{

    flex-direction:column;

    padding:15px;

    gap:15px;

}


nav ul{

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}



.hero h1{

    font-size:2.5rem;

}



.about-grid{

    grid-template-columns:1fr;

}



.section,
.mission-section,
.motto-section,
.vision-section,
.scripture-section{

    padding:80px 7%;

}



.pastor-card img{

    height:300px;

}


}