 /* ===================================
   GOOGLE FONTS & RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
   BUTTONS
=================================== */

.btn{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#b89328;
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    margin-left:15px;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#0d3b66;
}

/* ===================================
   HEADER
=================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1000;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;
}

.logo h2{
    color:#0d3b66;
    font-size:1.4rem;
    font-family:'Playfair Display',serif;
}

.logo p{
    color:#666;
    font-size:.9rem;
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#d4af37;
}

/* ===================================
   HERO
=================================== */

.hero{
    position:relative;
    min-height:100vh;
    background:linear-gradient(rgba(8,36,73,.85),rgba(8,36,73,.85)),
    url("../images/hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    padding-top:90px;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-text h4{
    color:#d4af37;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero-text h1{
    font-family:'Playfair Display',serif;
    color:#fff;
    font-size:3.8rem;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h3{
    color:#f6d76d;
    font-size:1.6rem;
    margin-bottom:25px;
    font-weight:600;
}

.hero-text p{
    color:#f4f4f4;
    font-size:1.05rem;
    margin-bottom:40px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:420px;
    height:520px;
    object-fit:cover;
    border-radius:20px;
    border:8px solid rgba(255,255,255,.2);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    animation:float 4s ease-in-out infinite;
}

/* ===================================
   ANIMATIONS
=================================== */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.hero-text{
    animation:fadeUp 1s ease;
}

.hero-image{
    animation:fadeUp 1.2s ease;
}
/* ===================================
   SECTION SPACING
=================================== */

section{
    padding:100px 0;
}

section h2{
    font-family:'Playfair Display',serif;
}

/* ===================================
   WELCOME SECTION
=================================== */

.welcome{
    background:#ffffff;
    text-align:center;
}

.welcome h2{
    font-size:2.6rem;
    color:#0d3b66;
    margin-bottom:25px;
}

.welcome p{
    max-width:850px;
    margin:auto;
    font-size:1.1rem;
    color:#666;
    line-height:1.9;
}

/* ===================================
   ABOUT PREVIEW
=================================== */

.about-preview{
    background:#f8f9fc;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-grid h5{
    color:#d4af37;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.about-grid h2{
    font-size:2.5rem;
    color:#0d3b66;
    margin-bottom:10px;
}

.about-grid h4{
    color:#555;
    font-weight:600;
    margin-bottom:25px;
}

.about-grid p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/* ===================================
   MINISTRIES
=================================== */

.ministries{
    background:#ffffff;
    text-align:center;
}

.ministries h2{
    color:#0d3b66;
    font-size:2.6rem;
    margin-bottom:60px;
}

.ministry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.card h3{
    color:#0d3b66;
    margin-bottom:18px;
    font-size:1.35rem;
}

.card p{
    color:#666;
    line-height:1.8;
}

/* ===================================
   FEATURED BOOKS
=================================== */

.featured-books{
    background:#f5f7fb;
    text-align:center;
}

.featured-books h2{
    color:#0d3b66;
    font-size:2.6rem;
    margin-bottom:15px;
}

.featured-books > .container > p{
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
    font-size:1.05rem;
}

.books-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    margin-bottom:50px;
}

.books-grid img{
    width:100%;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    transition:.35s;
    cursor:pointer;
}

.books-grid img:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,.22);
}

/* ===================================
   GENERAL HOVER EFFECTS
=================================== */

.card,
.books-grid img,
.about-grid img{
    transition:all .35s ease;
}

.about-grid img:hover{
    transform:scale(1.02);
}

section h2{
    margin-bottom:20px;
}
/* ===================================
   SCRIPTURE SECTION
=================================== */

.scripture{
    background:linear-gradient(rgba(13,59,102,.92),rgba(13,59,102,.92)),
    url("../images/hero.jpg") center/cover no-repeat;
    color:#fff;
    text-align:center;
    padding:120px 20px;
}

.scripture h2{
    font-family:'Playfair Display',serif;
    font-size:2.4rem;
    max-width:900px;
    margin:auto;
    line-height:1.5;
    color:#fff;
}

.scripture p{
    margin-top:25px;
    font-size:1.2rem;
    color:#d4af37;
    font-weight:600;
}

/* ===================================
   CONTACT PREVIEW
=================================== */

.contact-preview{
    background:#ffffff;
    text-align:center;
}

.contact-preview h2{
    color:#0d3b66;
    font-size:2.6rem;
    margin-bottom:25px;
}

.contact-preview p{
    color:#666;
    font-size:1.1rem;
    margin-bottom:18px;
    line-height:1.9;
}

.contact-preview .btn{
    margin-top:25px;
}

/* ===================================
   FOOTER
=================================== */

footer{
    background:#081f3d;
    color:#ddd;
    text-align:center;
    padding:70px 20px;
}

footer h2{
    color:#fff;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
    font-size:2rem;
}

footer p{
    max-width:800px;
    margin:12px auto;
    color:#cfcfcf;
    line-height:1.8;
}

footer a{
    color:#d4af37;
    transition:.3s;
}

footer a:hover{
    color:#fff;
}

/* ===================================
   SMALL UTILITIES
=================================== */

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

.mt-30{
    margin-top:30px;
}

.mt-40{
    margin-top:40px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-30{
    margin-bottom:30px;
}

.mb-40{
    margin-bottom:40px;
}

/* ===================================
   SCROLLBAR
=================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b89328;
}

/* ===================================
   SELECTION
=================================== */

::selection{
    background:#d4af37;
    color:#fff;
}

/* ===================================
   SMOOTH TRANSITIONS
=================================== */

button,
a,
img,
.card{
    transition:all .35s ease;
}

/* ===================================
   SHADOW HELPERS
=================================== */

.shadow{
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.rounded{
    border-radius:15px;
}
/* ===================================
   RESPONSIVE DESIGN
=================================== */

/* Tablets */

@media (max-width:992px){

.hero-content{
grid-template-columns:1fr;
text-align:center;
gap:50px;
}

.hero-text p{
margin:auto;
}

.hero-buttons{
justify-content:center;
}

.hero-image img{
width:350px;
height:450px;
}

.about-grid{
grid-template-columns:1fr;
text-align:center;
}

.about-grid img{
max-width:450px;
margin:auto;
}

.nav-container{
flex-direction:column;
height:auto;
padding:20px 0;
}

nav ul{
margin-top:20px;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.logo{
justify-content:center;
}

}


/* Mobile */

@media (max-width:768px){

section{
padding:70px 0;
}

.hero{
padding-top:140px;
min-height:auto;
}

.hero-text h1{
font-size:2.4rem;
}

.hero-text h3{
font-size:1.3rem;
}

.hero-text p{
font-size:1rem;
}

.hero-image img{
width:280px;
height:360px;
}

.btn,
.btn-outline{

display:block;

width:220px;

margin:10px auto;

text-align:center;

}

.welcome h2,
.ministries h2,
.featured-books h2,
.contact-preview h2{

font-size:2rem;

}

.about-grid h2{

font-size:2rem;

}

.scripture h2{

font-size:1.8rem;

}

.books-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.card{

padding:30px 20px;

}

.logo img{

width:55px;

height:55px;

}

.logo h2{

font-size:1.2rem;

}

.logo p{

font-size:.8rem;

}

nav ul{

flex-direction:column;

gap:15px;

}

header{

position:relative;

}

}


/* Small Phones */

@media (max-width:480px){

.hero-text h1{

font-size:2rem;

}

.hero-text h3{

font-size:1.1rem;

}

.hero-image img{

width:230px;

height:300px;

}

.books-grid{

grid-template-columns:1fr;

}

.container{

width:92%;

}

.scripture h2{

font-size:1.5rem;

}

footer h2{

font-size:1.5rem;

}

}


/* ===================================
   BACK TO TOP BUTTON
=================================== */

#topBtn{

position:fixed;

bottom:25px;

right:25px;

background:#d4af37;

color:white;

width:50px;

height:50px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.3s;

z-index:999;

}

#topBtn:hover{

background:#0d3b66;

transform:translateY(-5px);

}


/* ===================================
   FADE ANIMATION
=================================== */

.fade-in{

opacity:0;

transform:translateY(50px);

animation:fadeIn 1s forwards;

}

@keyframes fadeIn{

to{

opacity:1;

transform:translateY(0);

}

}


/* ===================================
   IMAGE HOVER EFFECT
=================================== */

img{

transition:.4s;

}

img:hover{

transform:scale(1.02);

}


/* ===================================
   CARD HOVER
=================================== */

.card:hover{

border-bottom:5px solid #d4af37;

}


/* ===================================
   FOOTER COPYRIGHT
=================================== */

footer p:last-child{

margin-top:30px;

font-size:.9rem;

opacity:.8;

}


/* ===================================
   END OF STYLE.CSS
=================================== */
/* ===========================
   PROFESSIONAL BOOK CARDS
=========================== */

.book-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.4s;

padding-bottom:30px;

}

.book-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.book-card img{

width:100%;

height:320px;

object-fit:cover;

}

.book-card h3{

margin:25px 20px 15px;

color:#0d3b66;

font-size:1.3rem;

font-family:'Playfair Display',serif;

}

.book-card p{

margin:0 20px 25px;

color:#666;

font-size:.95rem;

line-height:1.8;

}

.book-card .btn{

margin-left:20px;

}

.featured-books h5{

color:#d4af37;

letter-spacing:3px;

text-transform:uppercase;

margin-bottom:10px;

}
/* ===================================
   TESTIMONIALS
=================================== */

.testimonials{
    background:#f8f9fc;
    padding:100px 0;
    text-align:center;
}

.testimonials h5{
    color:#d4af37;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.testimonials h2{
    color:#0d3b66;
    font-size:2.6rem;
    margin-bottom:60px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    color:#666;
    font-style:italic;
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-card h4{
    color:#0d3b66;
}

/* ===================================
   SOCIAL MEDIA
=================================== */

.social-section{
    background:#0d3b66;
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.social-section h2{
    color:#fff;
    margin-bottom:20px;
}

.social-section p{
    max-width:700px;
    margin:0 auto 35px;
}

.social-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.social-buttons a{
    background:#d4af37;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.social-buttons a:hover{
    background:#fff;
    color:#0d3b66;
}

/* ===================================
   AMAZON SECTION
=================================== */

.amazon-section{
    background:#ffffff;
    text-align:center;
    padding:100px 20px;
}

.amazon-section h2{
    color:#0d3b66;
    margin-bottom:20px;
}

.amazon-section p{
    max-width:800px;
    margin:0 auto 40px;
    color:#666;
    line-height:1.9;
}

/* ===================================
   NEW FOOTER
=================================== */

footer{
    background:#081f3d;
    color:#ddd;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-grid h2,
.footer-grid h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-grid p{
    color:#ccc;
    line-height:1.8;
}

.footer-grid ul{
    list-style:none;
    padding:0;
}

.footer-grid li{
    margin-bottom:12px;
}

.footer-grid a{
    color:#ccc;
    transition:.3s;
}

.footer-grid a:hover{
    color:#d4af37;
}

footer hr{
    margin:50px 0 25px;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.copyright{
    text-align:center;
    color:#aaa;
}

/* ===================================
   RESPONSIVE FOOTER
=================================== */

@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.social-buttons{
flex-direction:column;
align-items:center;
}

.social-buttons a{
width:220px;
}

}
