/*=========================================================
    OASIS OF GLORY CHURCH
    Main Stylesheet
    Version : 1.0
    Developer : ChatGPT & Winfred Kariuki
==========================================================*/


/*==========================
    GOOGLE FONTS
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');


/*==========================
    CSS VARIABLES
==========================*/

:root{

    --primary:#0B2A8A;
    --secondary:#FFEA00;

    --dark:#111111;
    --light:#ffffff;
    --background:#F6F8FC;

    --gray:#7a7a7a;
    --border:#e4e4e4;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:12px;

    --transition:.35s ease;

}


/*==========================
    RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    background:var(--background);

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

section{

    padding:90px 0;

}

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

h1,h2,h3,h4,h5{

    font-family:'Montserrat',sans-serif;

}

p{

    line-height:1.8;

    color:#555;

}


/*==========================
    BUTTONS
==========================*/

.btn{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

    box-shadow:var(--shadow);

}

.btn:hover{

    background:var(--secondary);

    color:#111;

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid var(--primary);

    padding:14px 34px;

    border-radius:50px;

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*==========================
    SECTION TITLES
==========================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}


/*==========================
    CARDS
==========================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    overflow:hidden;

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}


/*==========================
    TOP BAR
==========================*/

.top-bar{

    background:var(--primary);

    color:#fff;

    font-size:14px;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

}

.left-top,
.right-top{

    display:flex;

    gap:20px;

    align-items:center;

}

.right-top a{

    transition:.3s;

}

.right-top a:hover{

    color:var(--secondary);

}


/*==========================
    NAVIGATION
==========================*/

header{

    background:#fff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:95px;

}

.logo img{
    width:95px;
    height:auto;
}

nav ul{

    display:flex;

    gap:35px;

}

nav a{

    font-weight:600;

    transition:.3s;

    position:relative;

}

nav a:hover,

nav a.active{

    color:var(--primary);

}

nav a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--secondary);

    transition:.3s;

}

nav a:hover::after,

nav a.active::after{

    width:100%;

}

.watch-live-btn{

    background:red;

    color:#fff;

    padding:13px 25px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.watch-live-btn:hover{

    background:#b30000;

}


/*==========================
    UTILITIES
==========================*/

.text-center{

    text-align:center;

}

.mt-5{

    margin-top:50px;

}

.mb-5{

    margin-bottom:50px;

}

.py{

    padding:90px 0;

}

/*==================================================
                HERO SLIDER
==================================================*/

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.slides{

    position:absolute;

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    width:100%;

    height:100%;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:opacity 2s ease;

}

.slide.active{

    opacity:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(5,20,70,.55);

}

.hero-content{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:white;

    z-index:10;

    text-align:center;

}

.hero h1{

    font-size:72px;

    margin:25px 0;

}

.hero p{

    color:white;

    font-size:24px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:25px;

}


/*==================================================
            ANNOUNCEMENT BAR
==================================================*/

.announcement{

    background:linear-gradient(90deg,var(--primary),#1640bf);

    color:#fff;

    overflow:hidden;

    white-space:nowrap;

    height:50px;

    display:flex;

    align-items:center;

}

.announcement-track{

    display:inline-block;

    padding-left:100%;

    animation:marquee 28s linear infinite;

    font-weight:600;

    font-size:16px;

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-100%);

    }

}
/*==================================================
            SERVICE TIMES
==================================================*/

.services{
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    background:var(--primary);
    color:#fff;
}

.service-card:hover p{
    color:#fff;
}

.service-card:hover h4{
    color:var(--secondary);
}

/* Icon */
.service-card i{
    font-size:36px;
    color:var(--secondary);
    margin-bottom:18px;
}

/* Service Name */
.service-card h3{
    font-size:18px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:12px;
}

/* Service Time */
.service-card h4{
    font-size:16px;
    color:var(--primary);
    font-weight:700;
    line-height:1.4;
    margin-bottom:12px;
}

/* Venue */
.service-card p{
    font-size:14px;
    line-height:1.6;
    color:#666;
}
/*==================================================
                STATISTICS
==================================================*/

.statistics{

    background:linear-gradient(120deg,#0B2A8A,#153db8);

    color:white;

    padding:90px 0;

}

.stat-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-box{

    text-align:center;

}

.stat-box h2{

    font-size:60px;

    color:var(--secondary);

}

.stat-box p{

    color:white;

    font-size:18px;

}
/*==================================================
                BISHOP SECTION
==================================================*/

.bishop-section{

    background:#fff;

    padding:100px 0;

}

.bishop-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.bishop-image{

    position:relative;

}

.bishop-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.bishop-content .subtitle{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

}

.bishop-content h2{

    font-size:48px;

    color:var(--primary);

    margin:15px 0;

}

.bishop-content h4{

    color:#666;

    margin-bottom:25px;

    font-size:22px;

}

.bishop-content p{

    margin-bottom:20px;

    font-size:17px;

    line-height:1.9;

}

.bishop-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;

}
/*==================================================
            LATEST SERMONS
==================================================*/

.latest-sermons{

    background:#F6F8FC;

}

.sermon-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.sermon-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.sermon-card:hover{

    transform:translateY(-10px);

}

.sermon-content{

    padding:30px;

}

.sermon-content span{

    color:var(--secondary);

    font-weight:700;

}

.sermon-content h3{

    margin:15px 0;

    color:var(--primary);

}

.sermon-content p{

    margin-bottom:25px;

}
.footer img{

    width:120px;

    height:auto;

}
/*=================================
        FOOTER
==================================*/

.footer{

    background:#07144d;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer h3{

    color:var(--secondary);

    margin-bottom:20px;

}

.footer ul{

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:white;

    transition:.3s;

}

.footer a:hover{

    color:var(--secondary);

}

.footer p{

    color:#ddd;

}

.footer hr{

    margin:40px 0 20px;

    border:1px solid rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

    color:#ccc;

}
.footer img{

    margin-bottom:25px;

}
.footer p{

    font-size:16px;

}

.footer li{

    font-size:16px;

}

.footer h3{

    font-size:24px;

}

/*======================================
        NEXT SERVICE COUNTDOWN
=======================================*/

.countdown{

    background:linear-gradient(135deg,#07144d,#1037b6);

    color:#fff;

    padding:90px 20px;

    text-align:center;

}

.countdown h2{

    font-size:48px;

    margin-bottom:10px;

}

.count-subtitle{

    font-size:22px;

    margin-bottom:50px;

    color:#f5f5f5;

}

.count-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    max-width:900px;

    margin:auto;

}

.count-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:35px 15px;

}

.count-box h1{

    font-size:72px;

    color:#FFD700;

    margin-bottom:10px;

}

.count-box span{

    font-size:20px;

    text-transform:uppercase;

    letter-spacing:2px;

}

@media(max-width:768px){

.count-grid{

grid-template-columns:repeat(2,1fr);

}

.count-box h1{

font-size:50px;

}

}
/*=================================================
            COUNTDOWN SECTION
==================================================*/

.countdown-section{

    background:linear-gradient(135deg,#081c75,#1537b6);

    padding:100px 20px;

    text-align:center;

    color:#fff;

}

.count-small-title{

    color:#FFD700;

    font-size:18px;

    font-weight:700;

    letter-spacing:3px;

}

.count-title{

    font-size:50px;

    margin-top:15px;

}

.count-description{

    margin-top:10px;

    font-size:22px;

    color:#f3f3f3;

}

.count-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.count-card{

    background:rgba(255,255,255,.12);

    border-radius:18px;

    padding:40px;

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.2);

    transition:.4s;

}

.count-card:hover{

    transform:translateY(-8px);

}

.count-card h1{

    font-size:70px;

    color:#FFD700;

    margin-bottom:10px;

}

.count-card span{

    font-size:20px;

    text-transform:uppercase;

}

.next-service-date{

    margin-top:45px;

    font-size:22px;

    color:#FFD700;

    font-weight:600;

}

.live-status{

    margin:30px auto;

    background:red;

    color:white;

    display:inline-block;

    padding:12px 35px;

    border-radius:40px;

    font-size:22px;

    font-weight:bold;

    animation:pulse 1s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.1);

}

100%{

transform:scale(1);

}

}

@media(max-width:900px){

.count-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.count-grid{

grid-template-columns:1fr;

}

.count-title{

font-size:36px;

}

.count-card h1{

font-size:50px;

}

}
/*==================================================
            FLOATING WHATSAPP
===================================================*/

.whatsapp-container{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    align-items:center;

    z-index:99999;

}

.whatsapp-message{

    background:white;

    padding:12px 18px;

    border-radius:15px;

    margin-right:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    animation:slideIn 1s;

}

.whatsapp-message strong{

    display:block;

    color:#07144d;

    font-size:16px;

}

.whatsapp-message small{

    color:#555;

    font-size:14px;

}

.whatsapp-float{

    width:68px;

    height:68px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    animation:whatsappPulse 2s infinite;

    transition:.4s;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    color:white;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}

70%{

box-shadow:0 0 0 20px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

@keyframes slideIn{

from{

opacity:0;

transform:translateX(50px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@media(max-width:768px){

.whatsapp-message{

display:none;

}

.whatsapp-container{

right:18px;

bottom:18px;

}

.whatsapp-float{

width:60px;

height:60px;

font-size:30px;

}

}
/*====================================
        FLOATING BUTTONS
=====================================*/

.floating-buttons{

    position:fixed;

    right:28px;

    bottom:115px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.floating-btn{

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    color:white;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.floating-btn:hover{

    transform:scale(1.1);

}

.top-btn{

    background:#0B2A8A;

}

.prayer-btn{

    background:#E67E22;

}

.verse-btn{

    background:#16A085;

}
/*====================================
            POPUPS
=====================================*/

.popup{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:99999;

}

.popup-content{

    background:white;

    width:90%;

    max-width:600px;

    margin:70px auto;

    padding:40px;

    border-radius:18px;

    position:relative;

}

.popup-content h2{

    color:#07144d;

    margin-bottom:20px;

}

.popup-content input,

.popup-content textarea{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:10px;

}

.close-popup{

    position:absolute;

    right:25px;

    top:20px;

    cursor:pointer;

    font-size:28px;

}
/*==================================================
                ABOUT PAGE
==================================================*/

.page-hero{

    height:420px;

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.about-hero{

    background:url('../images/about/about-banner.jpg');

}

.page-hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.page-hero-content h1{

    font-size:60px;

    margin-bottom:20px;

}

.page-hero-content p{

    font-size:24px;

    color:#FFD700;

}

.about-intro{

    padding:100px 0;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.section-subtitle{

    color:#d4a017;

    font-weight:700;

    letter-spacing:3px;

}

.about-content h2{

    font-size:42px;

    color:#07144d;

    margin:20px 0;

}

.about-content p{

    margin-bottom:25px;

    line-height:1.9;

    color:#555;

}
/*==================================================
        VISION SECTION
==================================================*/

.vision-section{

    padding:100px 0;

    background:#07144d;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.vision-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

}

.vision-card:hover{

    transform:translateY(-10px);

}

.vision-icon{

    width:80px;

    height:80px;

    background:#FFD700;

    color:#07144d;

    border-radius:50%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.vision-card h3{

    margin-bottom:20px;

    color:#07144d;

}

/*==================================================
        VALUES
==================================================*/

.values-section{

    padding:100px 0;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.value-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.10);

    transition:.4s;

}

.value-card:hover{

    transform:translateY(-10px);

}

.value-card i{

    font-size:42px;

    color:#FFD700;

    margin-bottom:20px;

}

.value-card h3{

    color:#07144d;

    margin-bottom:15px;

}
/*==================================================
        BELIEFS
==================================================*/

.belief-section{

    padding:100px 0;

    background:#f7f8fc;

}

.accordion{

    margin-top:50px;

}

.accordion-item{

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    background:#fff;

}

.accordion-header{

    width:100%;

    background:#07144d;

    color:#fff;

    border:none;

    padding:22px 30px;

    font-size:20px;

    cursor:pointer;

    text-align:left;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.3s;

}

.accordion-header:hover{

    background:#0d2377;

}

.accordion-header i{

    color:#FFD700;

}

.accordion-content{

    display:none;

    padding:30px;

    line-height:1.8;

    color:#555;

    background:#fff;

}

.accordion-item.active .accordion-content{

    display:block;

}
/*==================================================
            BISHOP PAGE
==================================================*/

.bishop-hero{

    background:url('../images/bishop/bishop-banner.jpg');

    background-size:cover;

    background-position:center;

}

.bishop-profile{

    padding:100px 0;

}

.bishop-profile-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.bishop-photo img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.bishop-text h2{

    color:#07144d;

    margin:20px 0;

    font-size:42px;

}

.bishop-text h4{

    color:#d4a017;

    margin-bottom:25px;

}

.bishop-text p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;

}

.bishop-text blockquote{

    margin-top:40px;

    padding:25px;

    background:#07144d;

    color:white;

    border-left:6px solid #FFD700;

    font-size:22px;

    border-radius:10px;

}

/*==================================================
            TIMELINE
==================================================*/

.timeline-section{

    padding:100px 0;

    background:#f7f8fc;

}

.timeline{

    margin-top:60px;

    border-left:5px solid #FFD700;

    padding-left:40px;

}

.timeline-item{

    margin-bottom:50px;

    position:relative;

}

.timeline-item::before{

    content:"";

    position:absolute;

    width:20px;

    height:20px;

    background:#07144d;

    border-radius:50%;

    left:-52px;

    top:5px;

}

.timeline-year{

    color:#FFD700;

    font-weight:bold;

    margin-bottom:10px;

}

.timeline-content{

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.timeline-content h3{

    color:#07144d;

    margin-bottom:15px;

}

/*==================================================
        MESSAGE
==================================================*/

.bishop-message{

    padding:100px 0;

    background:#07144d;

}

.message-box{

    max-width:900px;

    margin:auto;

    background:white;

    border-radius:20px;

    padding:60px;

    text-align:center;

}

.message-box h2{

    color:#07144d;

    margin-bottom:30px;

}

.message-box p{

    line-height:2;

    margin-bottom:20px;

}

.message-box strong{

    color:#FFD700;

    font-size:22px;

}

/*==================================================
MINISTRIES PAGE
==================================================*/

.ministries-hero{

background:url('../images/ministries/banner.jpg');

background-size:cover;

background-position:center;

}

.ministries-intro{

padding:90px 0 40px;

}

.ministry-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

padding-bottom:100px;

}

.ministry-card{

background:white;

padding:45px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.ministry-card:hover{

transform:translateY(-12px);

}

.ministry-card i{

font-size:48px;

color:#FFD700;

margin-bottom:20px;

}

.ministry-card h3{

color:#07144d;

margin-bottom:20px;

}

.ministry-card p{

line-height:1.8;

}

.join-ministry{

padding:100px 0;

background:#07144d;

}

.join-box{

max-width:850px;

margin:auto;

background:white;

padding:60px;

border-radius:25px;

text-align:center;

}

.join-box h2{

color:#07144d;

margin-bottom:25px;

}

.join-box p{

margin-bottom:35px;

line-height:2;

}
/*==================================================
EVENTS PAGE
==================================================*/

.events-hero{

background:url('../images/events/banner.jpg');

background-size:cover;

background-position:center;

}

.events-intro{

padding:90px 0 40px;

}

.featured-event{

padding:80px 0;

}

.featured-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.featured-image img{

width:100%;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.event-tag{

background:#FFD700;

padding:8px 20px;

border-radius:30px;

font-weight:bold;

color:#07144d;

display:inline-block;

margin-bottom:20px;

}

.featured-details h2{

color:#07144d;

margin:20px 0;

font-size:42px;

}

.featured-details ul{

margin:30px 0;

line-height:2.2;

}

.event-list{

padding:90px 0;

background:#f8f9fc;

}

.event-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.event-card{

background:white;

padding:40px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.event-card:hover{

transform:translateY(-8px);

}

.event-counter{

padding:90px 0;

background:#07144d;

color:white;

}

.event-counter .section-title h2,

.event-counter .section-title p{

color:white;

}
/*==================================================
GALLERY PAGE
==================================================*/

.gallery-hero{

background:url('../images/gallery/banner.jpg');

background-size:cover;

background-position:center;

}

.gallery-intro{

padding:90px 0 40px;

}

.gallery-filter{

padding-bottom:40px;

}

.filter-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

}

.photo-gallery{

padding-bottom:100px;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:18px;

cursor:pointer;

}

.gallery-item img{

width:100%;

height:320px;

object-fit:cover;

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:25px;

background:linear-gradient(transparent,rgba(0,0,0,.85));

color:white;

}

.gallery-video{

padding:100px 0;

background:#f8f9fc;

}

.video-box{

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

/*==================================================
GIVING PAGE
==================================================*/

.giving-hero{

background:url('../images/giving/banner.jpg');

background-size:cover;

background-position:center;

}

.giving-intro{

padding:90px 0 40px;

}

.giving-scripture{

padding:80px 0;

background:#07144d;

}

.scripture-box{

max-width:900px;

margin:auto;

text-align:center;

color:white;

}

.scripture-box h2{

font-size:40px;

margin-bottom:20px;

color:#FFD700;

}

.giving-methods{

padding:100px 0;

}

.giving-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.giving-card{

padding:45px;

text-align:center;

background:white;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.giving-card:hover{

transform:translateY(-10px);

}

.giving-card i{

font-size:55px;

color:#FFD700;

margin-bottom:20px;

}

.giving-message{

padding:90px 0;

background:#f8f9fc;

}

/*==================================================
CONTACT PAGE
==================================================*/

.contact-hero{

background:url('../images/contact/banner.jpg');

background-size:cover;

background-position:center;

}

.contact-intro{

padding:90px 0 40px;

}

.contact-details{

padding-bottom:80px;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.contact-card{

background:#fff;

padding:40px;

text-align:center;

border-radius:20px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

}

.contact-card:hover{

transform:translateY(-8px);

}

.contact-card i{

font-size:45px;

color:#FFD700;

margin-bottom:20px;

}

.contact-form-section{

padding:90px 0;

background:#f8f9fc;

}

.contact-form{

max-width:850px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,

.contact-form textarea{

padding:18px;

border-radius:10px;

border:1px solid #ddd;

font-size:16px;

}

.map-box{

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.15);

margin-bottom:100px;

}

/*==================================================
WATCH LIVE PAGE
==================================================*/

.live-hero{

background:url('../images/live/banner.jpg');

background-size:cover;

background-position:center;

}

.live-stream{

padding:90px 0;

}

.live-header{

text-align:center;

margin-bottom:40px;

}

.live-badge{

display:inline-block;

background:red;

color:white;

padding:10px 25px;

border-radius:30px;

font-weight:bold;

animation:pulse 1s infinite;

margin-bottom:20px;

}

@keyframes pulse{

0%{opacity:1;}

50%{opacity:.5;}

100%{opacity:1;}

}

.live-video{

border-radius:20px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.live-schedule{

padding:90px 0;

background:#f8f9fc;

}

.schedule-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.schedule-card{

background:white;

padding:40px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.live-prayer{

padding:90px 0;

background:#07144d;

}

.recent-live{

padding:100px 0;

}
/*==================================================
STAFF EMAIL
==================================================*/

.staff-email-page{

padding:100px 20px;

background:#f5f7fb;

min-height:80vh;

display:flex;

align-items:center;

}

.email-card{

max-width:700px;

margin:auto;

background:white;

padding:60px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.email-logo{

width:120px;

margin-bottom:25px;

}

.email-card h1{

color:#07144d;

margin-bottom:10px;

}

.email-card h2{

color:#FFD700;

margin-bottom:25px;

}

.email-card p{

font-size:17px;

line-height:1.8;

color:#555;

margin-bottom:30px;

}

.email-btn{

padding:16px 40px;

font-size:18px;

}

.email-help{

margin-top:40px;

padding-top:30px;

border-top:1px solid #ddd;

}

/*==================================================
SEARCH SERMONS
==================================================*/

.sermon-search-hero{

background:url('../images/search/banner.jpg');

background-size:cover;

background-position:center;

}

.search-page{

padding:100px 0;

}

.search-box{

max-width:800px;

margin:40px auto;

}

.search-box input{

width:100%;

padding:20px;

font-size:18px;

border-radius:12px;

border:2px solid #ddd;

}

.search-filters{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-bottom:60px;

}

.search-filters select{

padding:18px;

border-radius:10px;

border:1px solid #ddd;

}

.sermon-results{

padding:60px;

background:#f8f9fc;

border-radius:20px;

}
.statistics{
    background:#0f172a;
    color:#fff;
    padding:80px 20px;
}

.stat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    text-align:center;
    padding:40px 20px;
    border-radius:15px;
    background:rgba(255,255,255,.05);
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-8px);
    background:#b8860b;
}

.stat-box h2{
    font-size:55px;
    font-weight:bold;
    margin-bottom:10px;
    display:inline-block;
}

.stat-box span{
    font-size:40px;
    color:#FFD700;
    font-weight:bold;
}

.stat-box p{
    font-size:18px;
    margin-top:10px;
}
.stat-box i{
    font-size:42px;
    color:#FFD700;
    margin-bottom:15px;
    display:block;
}

.sermon-video{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
}

.sermon-video iframe{
    width:100%;
    height:100%;
    border:0;
    border-radius:15px 15px 0 0;
}

.sermon-card:hover img{

    transform:scale(1.05);

}

.play-btn{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:75px;

    height:75px;

    border-radius:50%;

    background:#ff0000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#fff;

    transition:.3s;

}

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.1);

}

.sermon-card{

    overflow:hidden;

    border-radius:18px;

}

.sermon-content{

    padding:25px;

}

/*==================================================
        RESPONSIVE NAVIGATION
==================================================*/

/* Hide hamburger on desktop */
.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    color:var(--primary);
    cursor:pointer;
}

/* Tablet & Mobile */
@media (max-width:1100px){

    .menu-toggle{
        display:block;
        order:3;
    }

    .navbar{
        position:relative;
        height:auto;
        padding:15px 0;
        flex-wrap:wrap;
    }

   nav{
    width:100%;
    display:none;
    margin-top:15px;
}

nav.active{
    display:block;
}

nav ul{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:0;
}
    nav ul{
        flex-direction:column;
        gap:0;
        background:#fff;
        border-top:1px solid #ddd;
    }

    nav ul li{
        border-bottom:1px solid #eee;
    }

    nav ul li a{
        display:block;
        padding:16px 20px;
    }

    .watch-live-btn{
        margin-left:auto;
        margin-right:15px;
    }
}

/* Small phones */
@media (max-width:768px){

    .top-bar{
        display:none;
    }

    .logo img{
        width:75px;
    }

    .watch-live-btn{
        padding:10px 18px;
        font-size:14px;
    }
}

.popup-overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.85);

display:none;

justify-content:center;

align-items:center;

z-index:99999;

padding:20px;

}

.popup-box{

background:#fff;

max-width:760px;

width:100%;

border-radius:20px;

overflow:hidden;

animation:popupZoom .5s;

box-shadow:0 20px 60px rgba(0,0,0,.4);

position:relative;

}

.popup-box img{

width:100%;

display:block;

}

.popup-content{

padding:25px;

text-align:center;

}

.popup-content h2{

color:#0d3b94;

margin-bottom:15px;

}

.popup-countdown{

font-size:22px;

font-weight:bold;

color:#d60000;

margin:20px 0;

}

.popup-buttons{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-top:20px;

}

.secondary-btn{

background:#777;

}

.popup-close{

position:absolute;

right:15px;

top:15px;

width:45px;

height:45px;

border-radius:50%;

border:none;

background:red;

color:#fff;

font-size:28px;

cursor:pointer;

}

.redirect-text{

margin-top:20px;

font-size:14px;

color:#666;

}

@keyframes popupZoom{

from{

transform:scale(.7);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.events-hero{
    background:url('../images/hero/events.jpeg') center center/cover no-repeat;
}

/*=============================
BRANCHES
=============================*/

.branches-grid,
.pastor-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

margin-top:50px;

}

.branch-card,
.pastor-card{

background:#fff;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.branch-card:hover,
.pastor-card:hover{

transform:translateY(-8px);

}
.branch-card img,
.pastor-card img{

width:100%;
height:380px;
object-fit:contain;
background:#f5f5f5;
padding:10px;

}

.branch-content,
.pastor-card{

padding:25px;

text-align:center;

}

.branch-content h3,
.pastor-card h3{

color:#07144d;

margin-bottom:10px;

}

.branch-content p,
.pastor-card p{

line-height:1.8;

color:#555;

}

.pastor-card h4{

color:#d4af37;

margin-bottom:15px;

font-weight:600;

}
.footer ul{

list-style:none;

padding:0;

margin:0;

}

.footer ul li{

margin-bottom:10px;

}

.footer ul li a{

color:#fff;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

color:#FFD700;

padding-left:6px;

}
/*==============================
FOOTER
==============================*/

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

}

.footer-grid h3{

color:#FFD700;

margin-bottom:18px;

font-size:20px;

}

.footer-grid ul{

list-style:none;

padding:0;

margin:0;

}

.footer-grid ul li{

margin-bottom:10px;

}

.footer-grid a{

color:#ffffff;

text-decoration:none;

transition:.3s;

}

.footer-grid a:hover{

color:#FFD700;

padding-left:6px;

}

.footer-about p{

line-height:1.8;

margin-top:12px;

}

.footer-grid p{

line-height:1.8;

margin-bottom:12px;

}

.footer-grid i{

margin-right:8px;

color:#FFD700;

}