/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F8F5ED;
    color: #252525;
    line-height: 1.6;
}

section {
    padding: 90px 10%;
    scroll-margin-top: 100px;
}


/* =====================================================
   COLOR THEME
===================================================== */

/*
   Deep Navy  : #0B1F3A
   Gold       : #D4AF37
   Ivory      : #F8F5ED
   White      : #FFFFFF
   Dark Text  : #252525
*/


/* =====================================================
   HEADER
===================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0B1F3A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.20);
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text h2 {
    color: #FFFFFF;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.logo-text p {
    color: #D4AF37;
    font-size: 11px;
    margin: 0;
    letter-spacing: 1px;
}


/* Navigation */

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #D4AF37;
}


/* Gold line under navigation */

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;

    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}


/* Hero overlay */

.overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(5, 18, 35, 0.65);

    z-index: 1;
}


/* Hero content */

.content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #FFFFFF;

    max-width: 900px;
    padding: 20px;
}

.content h1 {
    color: #D4AF37;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 2px;
}

.content h2 {
    color: #FFFFFF;
    font-size: 70px;
    margin: 15px 0;
    font-weight: 800;
    line-height: 1.1;
}

.content p {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 30px;
}


/* =====================================================
   BUTTON
===================================================== */

.btn {
    display: inline-block;

    padding: 14px 35px;

    background: #D4AF37;
    color: #0B1F3A;

    text-decoration: none;

    border-radius: 5px;

    font-weight: 700;

    transition: 0.3s;

    border: 2px solid #D4AF37;
}

.btn:hover {
    background: transparent;
    color: #D4AF37;
}


/* =====================================================
   GENERAL SECTION HEADINGS
===================================================== */

section h2 {
    text-align: center;

    margin-bottom: 20px;

    color: #0B1F3A;

    font-weight: 700;
}

section h2::after {
    content: "";

    display: block;

    width: 60px;
    height: 3px;

    background: #D4AF37;

    margin: 12px auto 0;
}


/* =====================================================
   WELCOME
===================================================== */

.welcome {
    text-align: center;

    background: #FFFFFF;

    padding: 80px 10%;
}

.welcome h2 {
    color: #0B1F3A;
}

.welcome p {
    max-width: 800px;

    margin: auto;

    color: #555;

    font-size: 17px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    background: #F8F5ED;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;

    max-height: 600px;

    object-fit: cover;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.20);
}

.about-text {
    background: #FFFFFF;

    padding: 40px;

    border-left: 5px solid #D4AF37;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-text h5 {
    color: #D4AF37;

    font-size: 15px;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.about-text h2 {
    text-align: left;

    color: #0B1F3A;

    margin-bottom: 20px;
}

.about-text h2::after {
    margin: 12px 0 0;
}

.about-subtitle {
    color: #777;

    display: block;

    margin-bottom: 15px;
}

.about-text p {
    color: #555;

    margin-bottom: 15px;
}

.about-text strong {
    color: #0B1F3A;
}

.about-list {
    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin: 20px 0 25px;
}

.about-list li {
    color: #0B1F3A;

    font-size: 14px;

    font-weight: 500;
}


/* =====================================================
   CARDS / SERVICES
===================================================== */

.feature-container,
.service-container {
    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 1fr)
    );

    gap: 25px;
}

.card,
.service-box {
    background: #FFFFFF;

    padding: 30px;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(11, 31, 58, 0.08);

    transition: 0.3s;

    border-top: 3px solid transparent;
}

.card:hover,
.service-box:hover {
    transform: translateY(-10px);

    border-top: 3px solid #D4AF37;
}

.card h3,
.service-box h3 {
    color: #0B1F3A;

    margin-bottom: 10px;
}

.card p,
.service-box p {
    color: #666;
}

.card i {
    font-size: 45px;

    color: #D4AF37;

    margin-bottom: 20px;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #FFFFFF;
}


/* =====================================================
   MINISTRIES
===================================================== */

.ministries {
    background: #F8F5ED;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery {
    background: #FFFFFF;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
}

.gallery-grid img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    border-radius: 10px;

    transition: 0.3s;

    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);

    box-shadow:
        0 10px 25px rgba(11, 31, 58, 0.20);
}


/* =====================================================
   LIVE
===================================================== */

.live {
    text-align: center;

    background: #0B1F3A;

    color: #FFFFFF;
}

.live h2 {
    color: #FFFFFF;
}

.live h2::after {
    background: #D4AF37;
}

.live p {
    margin-bottom: 25px;

    color: #E8E8E8;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {
    background: #F8F5ED;
}

.testimonials .card {
    border-top: 3px solid #D4AF37;
}

.testimonials .card p {
    font-style: italic;

    font-size: 17px;

    margin-bottom: 15px;
}

.testimonials .card strong {
    color: #D4AF37;
}


/* =====================================================
   GIVING
===================================================== */

.giving {
    text-align: center;

    background: #FFFFFF;
}

.giving p {
    max-width: 700px;

    margin: 0 auto 25px;

    color: #555;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: #F8F5ED;
}

.contact form {
    max-width: 700px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact input,
.contact textarea {
    padding: 15px;

    border: 1px solid #D8D8D8;

    border-radius: 6px;

    background: #FFFFFF;

    color: #252525;

    font-size: 15px;

    outline: none;

    transition: 0.3s;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #D4AF37;

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.12);
}

.contact textarea {
    height: 150px;

    resize: vertical;
}

.contact button {
    cursor: pointer;

    border: none;

    align-self: center;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #07182D;

    color: #FFFFFF;

    text-align: center;

    padding: 50px 20px;
}

footer h3 {
    color: #FFFFFF;

    margin-bottom: 15px;
}

footer p {
    color: #D8D8D8;

    margin: 7px 0;
}

.social {
    margin: 25px 0;
}

.social a {
    color: #FFFFFF;

    font-size: 25px;

    margin: 0 10px;

    transition: 0.3s;
}

.social a:hover {
    color: #D4AF37;

    transform: translateY(-3px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    header {
        padding: 10px 5%;

        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-wrap: wrap;

        justify-content: center;

        gap: 10px;
    }

    nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }

    .hero {
        min-height: 700px;
    }

    .content h2 {
        font-size: 45px;
    }

    .content h1 {
        font-size: 30px;
    }

    .content p {
        font-size: 18px;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-text {
        padding: 30px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    header {
        padding: 8px 4%;
    }

    .logo img {
        width: 38px !important;
        height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
    }

    .logo-text h2 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 9px;
    }

    nav ul li {
        margin-left: 6px;
        margin-right: 6px;
    }

    nav ul li a {
        font-size: 13px;
    }

    section {
        padding: 70px 6%;
    }

    .hero {
        min-height: 650px;
    }

    .content h1 {
        font-size: 25px;
    }

    .content h2 {
        font-size: 35px;
    }

    .content p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 25px;
    }

    .about-text {
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 250px;
    }
}
/* WhatsApp Contact Section */

.contact{
    min-height:400px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#f5f7fb;
    padding:90px 20px;
}

.contact h2{
    margin-bottom:15px;
}

.contact p{
    max-width:650px;
    margin:0 auto 30px;
    color:#555;
}

/* WhatsApp Button */

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#128C7E;
    transform:translateY(-3px);
}

.whatsapp-btn i{
    font-size:22px;
}
.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    display:block;
    visibility:visible;
    opacity:1;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text h2{
    color:#ffffff;
    font-size:20px;
    margin:0;
    line-height:1.2;
}

.logo-text p{
    color:#FFD700;
    font-size:11px;
    margin:3px 0 0;
}
/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle{
    display:none;
    color:#ffffff;
    font-size:28px;
    cursor:pointer;
    padding:5px;
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width:900px){

    /* Header */

    header{
        padding:12px 5%;
        flex-direction:row;
        justify-content:space-between;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo-text h2{
        font-size:16px;
    }

    .logo-text p{
        font-size:9px;
    }


    /* Hamburger */

    .menu-toggle{
        display:block;
        z-index:1100;
    }


    /* Navigation */

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#1A2A44;
        display:none;
        padding:15px 0;
        box-shadow:0 10px 20px rgba(0,0,0,.2);
    }

    nav.active{
        display:block;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        width:100%;
        margin:0;
        padding:0;
    }

    nav ul li{
        width:100%;
        margin:0;
        text-align:center;
    }

    nav ul li a{
        display:block;
        width:100%;
        padding:15px 20px;
        font-size:16px;
    }

    nav ul li a:hover{
        background:rgba(255,255,255,.08);
        color:#FFD700;
    }


    /* =================================================
       HERO
    ================================================= */

    .hero{
        height:100vh;
    }

    .content{
        width:90%;
        padding-top:60px;
    }

    .content h1{
        font-size:28px;
    }

    .content h2{
        font-size:40px;
        line-height:1.2;
    }

    .content p{
        font-size:16px;
    }


    /* =================================================
       HERO BUTTONS
    ================================================= */

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:18px;
        margin-top:25px;
    }

    .hero-buttons .btn{
        width:220px;
        text-align:center;
        margin:0;
    }


    /* =================================================
       GENERAL SECTIONS
    ================================================= */

    section{
        padding:70px 6%;
    }


    /* =================================================
       ABOUT
    ================================================= */

    .about{
        grid-template-columns:1fr;
    }

    .about-image{
        order:1;
        margin-bottom:25px;
    }

    .about-text{
        order:2;
    }


    /* =================================================
       FEATURES
    ================================================= */

    .feature-container{
        grid-template-columns:1fr;
        gap:25px;
    }


    /* =================================================
       SERVICE SCHEDULE
    ================================================= */

    .services{
        padding:70px 6%;
        margin-bottom:50px;
    }

    .services h2{
        margin-bottom:30px;
    }

    .service-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .service-box{
        margin-bottom:5px;
    }


    /* =================================================
       CONTACT
    ================================================= */

    .contact{
        padding:70px 6%;
        margin-top:50px;
    }

    .contact h2{
        margin-bottom:30px;
    }

    .contact-box{
        grid-template-columns:1fr;
    }

    .contact form{
        margin-top:30px;
        gap:20px;
    }


    /* =================================================
       GALLERY
    ================================================= */

    .gallery-grid{
        grid-template-columns:1fr;
        gap:20px;
    }


    /* =================================================
       FOOTER
    ================================================= */

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

}


/* =====================================================
   SMALLER PHONES
===================================================== */

@media (max-width:500px){

    /* Logo */

    .logo-text h2{
        font-size:14px;
    }

    .logo-text p{
        font-size:8px;
    }

    .logo img{
        width:40px;
        height:40px;
    }


    /* Hero */

    .content{
        width:92%;
        padding-top:50px;
    }

    .content h1{
        font-size:24px;
    }

    .content h2{
        font-size:32px;
    }

    .content p{
        font-size:14px;
    }


    /* =================================================
       HERO BUTTONS - EXTRA MOBILE SPACE
    ================================================= */

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:22px;
        margin-top:25px;
    }

    .hero-buttons .btn{
        width:220px;
        margin:0;
    }


    /* General Button */

    .btn{
        padding:12px 25px;
        font-size:14px;
    }


    /* Sections */

    section{
        padding:60px 5%;
    }


    /* Service Schedule */

    .services{
        padding:60px 5%;
        margin-bottom:45px;
    }

    .service-container{
        gap:20px;
    }


    /* Contact */

    .contact{
        padding:60px 5%;
        margin-top:45px;
    }

    .contact form{
        margin-top:25px;
    }

}