/* ===========================
   Global Styles
=========================== */

/* body, html, etc... */

/* ===========================
   Live Banner
=========================== */

.live-banner{
    background:#d82323;
    color:#fff;
    text-align:center;
    padding:12px;
    font-weight:600;
}

.live-banner a{
    color:#fff;
    text-decoration:none;
}

.live-banner a:hover{
    text-decoration:underline;
}

/* ===========================
   NAVIGATION
=========================== */

header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar{
    max-width:1200px;
    margin:0 auto;
    padding:15px 25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

/* ===========================
   LOGO
=========================== */
.logo {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-direction: row;

    text-align: left;

}

.logo img {

    width: 78px;

    height: 78px;

    object-fit: contain;

    padding: 4px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 6px 20px rgba(0,0,0,.12);

}

.logo > div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.logo h2 {

    margin: 0;

    line-height: 1;

    font-family: 'Playfair Display', serif;

    font-size: 28px;

    color: #0A2540;

}

.logo span {

    margin: 0;

    line-height: 1;

    color: #D4AF37;

    font-style: italic;

    font-weight: 600;

}

.logo p {

    margin: 5px 0 0;

    line-height: 1.1;

    font-size: 12px;

    color: #666;

    font-weight: 500;

}



/* ===========================
   NAVIGATION LINKS
=========================== */

.navbar > .nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar ul li a{
    position:relative;
    color:#0A2540;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#D4AF37;
}

.navbar ul li a:hover::after{
    width:100%;
}
/* ===========================
   ACTIVE NAVIGATION
=========================== */
.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a.active,
.navbar ul li a.active{
    position:relative;
    color:#D4AF37;
}

.nav-links a.active::after,
.navbar ul li a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#D4AF37;
    border-radius:10px;
}

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

.hero{
    margin-top:20px;
    min-height:70vh;

    padding:80px 15px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;

    background:
        linear-gradient(rgba(10,37,64,.70), rgba(10,37,64,.70)),
        url("../images/hero.jpg") center/cover no-repeat;
}

.hero-small{
    min-height:50vh;
    padding:60px 20px;
}

.hero{
    background:#0A2540;
}
.overlay{
    max-width:850px;
    width:100%;
    margin:0 auto;
    padding:20px;
    text-align:center;
    box-sizing:border-box;
}
.overlay h1{
    font-family:'Playfair Display',serif;
    font-size:70px;
    margin-bottom:15px;
}

.overlay h3{
    font-size:30px;
    font-weight:500;
    margin-bottom:20px;
}

.overlay p{
    font-size:20px;
    margin-bottom:40px;
}

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

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

.gold,
.white{
    padding:16px 34px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.gold{
    background:#D4AF37;
    color:#0A2540;
}

.gold:hover{
    background:#f2c94c;
    transform:translateY(-3px);
}

.white{
    background:#fff;
    color:#0A2540;
}

.white:hover{
    transform:translateY(-3px);
}
/* ===========================
   LIVE LINKS
=========================== */

.live-links{
    padding:80px 20px;
    text-align:center;
    background:#f8f9fb;
}

.live-links h2{
    font-family:'Playfair Display',serif;
    font-size:40px;
    color:#0A2540;
    margin-bottom:15px;
}

.live-links p{
    font-size:18px;
    color:#666;
    margin-bottom:50px;
}

.cards{
    max-width:1200px;
    margin:0 auto;

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

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

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

.card i{
    font-size:50px;
    color:#D4AF37;
    margin-bottom:20px;
}

.card h3{
    color:#0A2540;
}

/* ===========================
   SERVICE TIMES
=========================== */

.services{
    padding:90px 20px;
    text-align:center;
}

.services h2{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#0A2540;
    margin-bottom:50px;
}

.service-grid{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.service-box{
    background:#0A2540;
    color:#fff;

    padding:40px 20px;
    border-radius:15px;

    transition:.3s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box h3{
    color:#D4AF37;
    margin-bottom:15px;
}

/* ===========================
   ABOUT SECTION
=========================== */

.about{
    padding:100px 20px;
    background:#f5f5f5;
}

.about-text{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.about h2{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#0A2540;
    margin-bottom:30px;
}

.about p{
    font-size:18px;
    color:#555;
    margin-bottom:20px;
}

.about a{
    display:inline-block;
    margin-top:20px;

    padding:15px 35px;
    border-radius:8px;

    background:#D4AF37;
    color:#0A2540;

    font-weight:700;
    transition:.3s;
}

.about a:hover{
    background:#c59b1d;
}
/* ===========================
   SOCIAL
=========================== */

.social{
    padding:80px 20px;
    text-align:center;
}

.social h2{
    font-family:'Playfair Display',serif;
    font-size:40px;
    color:#0A2540;
    margin-bottom:35px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.social-icons a{
    display:flex;
    justify-content:center;
    align-items:center;

    width:70px;
    height:70px;
    border-radius:50%;

    background:#0A2540;
    color:#fff;

    font-size:28px;
    transition:.3s;
}

.social-icons a:hover{
    background:#D4AF37;
    color:#0A2540;
    transform:scale(1.1);
}

/* ===========================
   WHATSAPP
=========================== */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    width:65px;
    height:65px;
    border-radius:50%;

    background:#25D366;
    color:#fff;

    font-size:34px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);

    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}


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

.welcome{
    padding:90px 20px;
    background:#fff;
    text-align:center;
}

.container{
    max-width:900px;
    margin:0 auto;
}

.section-tag{
    display:inline-block;
    margin-bottom:20px;

    padding:8px 18px;
    border-radius:30px;

    background:#D4AF37;
    color:#0A2540;

    font-size:13px;
    font-weight:700;
}

.welcome h2{
    font-family:'Playfair Display',serif;
    font-size:46px;
    color:#0A2540;
    margin-bottom:25px;
}

.welcome p{
    margin-bottom:18px;

    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* ===========================
   LATEST MESSAGE
=========================== */

.latest-message{
    padding:90px 20px;
    background:#f8f9fb;
}

.latest-container{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.latest-text h2{
    margin:20px 0;

    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#0A2540;
}

.latest-text p{
    margin-bottom:30px;

    font-size:18px;
    line-height:1.8;
    color:#555;
}

.watch-btn{
    display:inline-block;

    padding:16px 32px;
    border-radius:8px;

    background:#D4AF37;
    color:#0A2540;

    font-weight:700;
    transition:.3s;
}

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

.latest-video iframe{
    width:100%;
    height:350px;
    border-radius:12px;

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

@media (max-width:900px){

    .latest-container{
        grid-template-columns:1fr;
    }

}

/* ===========================
   UPCOMING SERVICES
=========================== */

.upcoming-services{
    padding:100px 20px;
    background:#fff;
}

.upcoming-services h2{
    margin:20px 0 60px;

    text-align:center;
    font-family:'Playfair Display',serif;
    font-size:45px;
    color:#0A2540;
}

.service-cards{
    max-width:1200px;
    margin:0 auto;

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

.service-card{
    padding:45px 30px;
    border-radius:15px;

    background:#fff;
    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

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

.service-card i{
    margin-bottom:25px;

    font-size:55px;
    color:#D4AF37;
}

.service-card h3{
    margin-bottom:15px;
    color:#0A2540;
}

.service-card p{
    margin-bottom:10px;
    color:#777;
}

.service-card h4{
    font-size:22px;
    color:#D4AF37;
}

/* ===========================
   PRAYER
=========================== */

.prayer{
    padding:100px 20px;

    background:#0A2540;
    color:#fff;
    text-align:center;
}

.prayer-content{
    max-width:850px;
    margin:0 auto;
}

.prayer h2{
    margin:20px 0;

    font-family:'Playfair Display',serif;
    font-size:48px;
}

.prayer p{
    margin-bottom:35px;

    font-size:18px;
    line-height:1.8;
    color:#ddd;
}

/* ===========================
   CONNECT
=========================== */

.connect{
    padding:100px 20px;

    background:#f8f9fb;
    text-align:center;
}

.connect h2{
    margin:20px 0;

    font-family:'Playfair Display',serif;
    font-size:46px;
    color:#0A2540;
}

.connect-text{
    max-width:700px;
    margin:0 auto 60px;

    font-size:18px;
    color:#666;
}

.connect-grid{
    max-width:1200px;
    margin:0 auto;

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

.connect-card{
    padding:40px 25px;
    border-radius:18px;

    background:#fff;
    color:#333;
    text-align:center;

    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.35s;
}

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

.connect-card i{
    margin-bottom:20px;

    font-size:55px;
    color:#D4AF37;
}

.connect-card h3{
    margin-bottom:12px;
    color:#0A2540;
}

.connect-card p{
    font-size:15px;
    color:#777;
}


/* ===========================
   CONTACT PAGE
=========================== */

.contact-section{
    padding:100px 20px;
    background:#f8f9fb;
}

.contact-grid{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info h2,
.contact-form h2{
    margin-bottom:25px;

    font-family:'Playfair Display',serif;
    color:#0A2540;
}

.contact-info p{
    margin:18px 0;

    font-size:17px;
    color:#555;
}

.contact-info i{
    margin-right:10px;
    color:#D4AF37;
}

.contact-social{
    display:flex;
    gap:20px;
    margin-top:25px;
}

.contact-social a{
    font-size:28px;
    color:#0A2540;
    transition:.3s;
}

.contact-social a:hover{
    color:#D4AF37;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;

    font-size:16px;
}

.contact-form textarea{
    resize:vertical;
}

@media (max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

/* ===========================
   SERVICE IMAGES
=========================== */

.service-box img{
    width:100%;
    height:220px;
    object-fit:cover;

    margin-bottom:15px;
    border-radius:10px;
}

/* ===========================
   GIVE PAGE
=========================== */

.give-section{
    padding:100px 20px;
    background:#fff;
}

.give-grid{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.bank-card{
    padding:40px;
    border-radius:15px;

    background:#f8f9fb;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.bank-card h3{
    margin-bottom:20px;
    color:#0A2540;
}

.bank-card p{
    margin:15px 0;
    line-height:1.7;
}

.give-grid img{
    width:100%;
    border-radius:15px;
}

@media (max-width:900px){

    .give-grid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   GIVE PAGE
=========================== */

.give-page{
    padding:100px 20px;
    background:#f8f9fb;
}

.give-intro{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.give-intro h2{
    margin:20px 0;

    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#0A2540;
}

.give-intro p{
    line-height:1.8;
    color:#555;
}

.donation-card{
    max-width:700px;
    margin:0 auto 70px;

    padding:50px;
    border-radius:18px;

    background:#fff;
    text-align:center;

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

.donation-card h3{
    margin-bottom:20px;

    font-size:30px;
    color:#0A2540;
}

.donation-card hr{
    margin:25px 0;
}

.donation-card p{
    margin:22px 0;

    font-size:18px;
    line-height:1.8;
}

.scripture{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.scripture i{
    display:block;
    margin-bottom:25px;

    font-size:50px;
    color:#D4AF37;
}

.scripture h3{
    margin-bottom:20px;

    font-family:'Playfair Display',serif;
    font-size:34px;
    color:#0A2540;
}

.scripture p{
    font-style:italic;
    font-size:20px;
    line-height:1.8;
    color:#555;
}

.communion-card img{
    width:100%;
    height:220px;
    object-fit:cover;

    margin-bottom:20px;
    border-radius:12px;
}

.blessing i{
    display:block;
    margin-bottom:20px;

    font-size:42px;
    color:#D4AF37;
}

/* ===========================
   GALLERY
=========================== */

.gallery{
    padding:100px 20px;

    background:#f8f9fb;
    text-align:center;
}

.gallery h2{
    margin:20px 0 50px;

    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#0A2540;
}

.gallery-grid{
    max-width:1100px;
    margin:0 auto;

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

.gallery-item{
    overflow:hidden;
    border-radius:18px;

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

.gallery-item img{
    display:block;
    width:100%;
    height:420px;
    object-fit:cover;

    transition:.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* ===========================
   ABOUT INTRO
=========================== */

.about-intro{
    padding:100px 20px;
    background:#fff;
}

.about-intro-container{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.about-image img{
    width:100%;
    height:500px;
    object-fit:cover;

    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.about-content h2{
    margin:20px 0;

    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#0A2540;
}

.about-content p{
    margin-bottom:20px;

    font-size:18px;
    line-height:1.9;
    color:#555;
}

@media (max-width:900px){

    .about-intro-container{
        grid-template-columns:1fr;
    }

    .about-image{
        order:-1;
    }

}


/* ===========================
   HAMBURGER MENU
=========================== */

.menu-toggle{
    display:none;
    margin-left:auto;

    font-size:30px;
    color:#0A2540;
    cursor:pointer;
}


/* ======================================
   RESPONSIVE DESIGN
====================================== */
.buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
/* ===========================
   Tablets
=========================== */

@media (max-width:992px){

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
        padding:15px;
    }

    .logo h2{
        font-size:24px;
    }

    .overlay h1{
        font-size:56px;
    }

    .overlay h3{
        font-size:26px;
    }

    .about-intro-container,
    .latest-container,
    .contact-grid,
    .give-grid{
        grid-template-columns:1fr;
    }

    .about-intro-container{
        gap:40px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

/* ===========================
   Mobile Navigation
=========================== */

@media (max-width:768px){

   .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:nowrap;
    position:relative;
    padding:15px;
    overflow:visible;
}

    .logo{
        display:flex;
        align-items:center;
        flex:1;
        gap:10px;
        min-width:0;
    }

    .logo img{
        width:50px;
        height:50px;
    }

    .logo h2{
        font-size:20px;
    }

    .logo span{
        font-size:15px;
    }

    .logo p{
        font-size:10px;
    }

    .menu-toggle{
        display:block;
        margin-left:12px;
        flex-shrink:0;
        font-size:30px;
        cursor:pointer;
    }
.navbar .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;

    width:100%;

    flex-direction:column;

    background:#fff;

    border-radius:0 0 12px 12px;
    box-shadow:0 8px 18px rgba(0,0,0,.08);

    padding:20px 0;
    margin:0;

    list-style:none;

    visibility:hidden;
    opacity:0;
    pointer-events:none;

    z-index:999;
}

   .navbar .nav-links.active{
    display:flex;
    visibility:visible;
    opacity:1;
    pointer-events:auto;
}
    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        padding:14px;
    }

    .overlay h1{
        font-size:42px;
    }

    .overlay h3{
        font-size:22px;
    }

    .overlay p{
        font-size:17px;
    }

    .hero{
    min-height:60vh;
    }

.buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    margin:35px auto 0;
}

.buttons a{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    max-width:300px;

    height:58px;

    margin:0 auto 18px;

    box-sizing:border-box;
}

    .service-cards,
    .service-grid,
    .connect-grid,
    .gallery-grid,
    .footer-container{
        grid-template-columns:1fr;
    }

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

    .about-content h2,
    .latest-text h2,
    .give-intro h2{
        font-size:38px;
    }
}
/* ===========================
   Small Phones
=========================== */

@media (max-width:576px){

    .overlay h1{
        font-size:34px;
    }

    .overlay h3{
        font-size:19px;
    }

    .overlay p{
        font-size:15px;
    }

    .logo h2{
        font-size:22px;
    }

    .logo img{
        width:60px;
        height:60px;
    }

    .gold,
    .white{
        width:100%;
        text-align:center;
    }

    .whatsapp{
        width:55px;
        height:55px;
        font-size:28px;
    }

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

footer{
    padding:70px 20px 30px;

    background:#081a2d;
    color:#fff;
    text-align:center;
}

/* Footer Logo */

footer img{
    width:90px;
    margin:0 auto 20px;
}

/* Footer Title */

footer h2{
    font-family:'Playfair Display', serif;
    margin-bottom:10px;
}

/* Footer Paragraphs */

footer p{
    margin:8px 0;
    color:#ddd;
}

/* Footer Layout */

.footer-container{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

    text-align:left;
}

.footer-container h3,
.footer-container h4{
    margin-bottom:20px;
    color:#D4AF37;
}

.footer-container a{
    display:block;
    margin-bottom:10px;

    color:#ddd;
    transition:.3s;
}

.footer-container a:hover{
    color:#D4AF37;
}

/* Footer Social Icons */

.footer-social{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    display:flex;
    justify-content:center;
    align-items:center;

    width:42px;
    height:42px;
    border-radius:50%;

    background:#0A2540;
    color:#fff;

    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#D4AF37;
    color:#0A2540;
    transform:translateY(-4px);
}

/* Give Button */

.give-btn{
    display:inline-block;

    padding:10px 22px;
    border-radius:6px;

    background:#D4AF37;
    color:#0A2540 !important;

    font-weight:700;
    transition:.3s;
}

.give-btn:hover{
    background:#f2c94c;
}

/* Divider */

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

/* Footer Copyright */

.copyright{
    margin-top:10px;

    text-align:center;
    font-size:15px;
    color:#b8c2cc;
}

/* Developer Credit */

.developer{
    margin-top:12px;

    text-align:center;
    font-size:14px;
    letter-spacing:.4px;
    color:#8fa2b5;
}

.developer-name{
    margin-left:4px;

    color:#D4AF37;
    font-weight:600;
    transition:.3s;
}

.developer-name:hover{
    color:#f2c94c;
}