/* ==========================
   MODERN CHURCH DESIGN SYSTEM
========================== */

:root{
    --primary:#2E7D32;
    --secondary:#8cc63f;
    --gold:#D4AF37;
    --dark:#1f2937;
    --light:#f8fafc;
    --text:#475569;
}

/* RESET */
body{
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
    background:#fff;
    overflow-x:hidden;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6{
    color:var(--dark);
    font-weight:700;
}

.section-title{
    font-size:2.7rem;
    margin-bottom:15px;
}

.section-subtitle{
    font-size:1rem;
    color:#64748b;
    max-width:700px;
    margin:auto;
}

/* SECTION SPACING */
section{
    padding:90px 0;
}

/* BUTTONS */
.btn-main{
    background:var(--secondary);
    color:white;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    display:inline-block;
    border:none;
}

.btn-main:hover{
    background:#74a02c;
    color:white;
    transform:translateY(-2px);
}

.btn-outline-modern{
    border:2px solid white;
    color:white;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
}

/* MODERN CARD */
.modern-card{
    background:#fff;
    border:none;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

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

.modern-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-body-modern{
    padding:30px;
}

/* HERO */
.hero-slider{
    position:relative;
    height:100vh;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1.5s ease;
}

.hero-slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.55)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    display:flex;
    align-items:center;
    height:100vh;
}

.hero-text h1{
    color:white;
    font-size:4rem;
    line-height:1.1;
    text-shadow:0 4px 20px rgba(0,0,0,.4);
}

.hero-text p{
    color:#f1f5f9;
    font-size:1.2rem;
    margin:20px 0;
}

.hero-content{
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text{
    max-width:700px;
    color:white;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.20),
        transparent
    );
    padding:40px;
    border-radius:20px;
}

 /* CARDS */
        .info-card{
            background:#fff;
            border:none;
            border-radius:20px;
            padding:35px 25px;
            text-align:center;
            box-shadow:0 10px 40px rgba(0,0,0,.08);
            transition:.3s;
            height:100%;
        }

        .info-card:hover{
            transform:translateY(-8px);
        }

        .info-card img{
            width:100%;
            border-radius:15px;
            height:220px;
            object-fit:cover;
        } */

        /* SERVICE SECTION */
        .service-section{
            background:#f8fafc;
            padding:80px 0;
        }

        .service-box{
            background:white;
            border-radius:20px;
            padding:30px;
            box-shadow:0 10px 30px rgba(0,0,0,.08);
            height:100%;
        }
       


/* WORSHIP CARDS */
.worship-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    height:420px;
    transition:.4s;
}

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

.worship-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.worship-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.25)
    );
}

.worship-content{
    position:absolute;
    bottom:30px;
    left:30px;
    color:white;
    z-index:2;
}
        .worship-content h3{
        font-size:1.8rem;
        font-weight:700;
        margin-bottom:10px;
}

        .worship-content p{
    font-size:15px;
    margin-bottom:10px;
}

        .worship-content small{
    color:#f3f4f6;
    font-size:14px;
    line-height:1.8;
}

/* SCRIPTURE SECTION */
.scripture-section{
    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    ),
    url('../img/slides/choir4.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    text-align:center;
    color:white;
}

.scripture-text{
    font-size:2rem;
    max-width:900px;
    margin:auto;
    color: #f1f5f9;
}

/* MODERN NAVBAR */
.modern-navbar{
    background:#fff;
    padding:16px 0;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.nav-logo{
    width:55px;
    height:55px;
    object-fit:contain;
}

.brand-title{
    font-size:1rem;
    font-weight:700;
    color:#1f2937;
}

.brand-subtitle{
    color:#64748b;
}

.nav-link{
    color:#1f2937 !important;
    font-weight:500;
    margin:0 8px;
    transition:.3s ease;
}

.nav-link:hover{
    color:#8cc63f !important;
}

.dropdown-menu{
    border:none;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    padding:12px;
}

.dropdown-item{
    border-radius:12px;
    padding:10px 15px;
}

.dropdown-item:hover{
    background:#f3f4f6;
}

.contact-btn{
    background:#8cc63f;
    color:white;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.contact-btn:hover{
    background:#74a02c;
    color:white;
}

/* NAVBAR */
header{
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

/* MOBILE */
@media(max-width:768px){

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

    section{
        padding:60px 0;
    }

    .section-title{
        font-size:2rem;
    }
}