﻿/* ========================================
   CITY OF DAVID - COMPLETE STYLESHEET
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    min-height: 200px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: #1a1a1a;
    padding: 10px 0;
}

.social-icons-top {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

    .social-icons-top a {
        color: #e91e9a;
        font-size: 16px;
        transition: color 0.3s ease;
    }

        .social-icons-top a:hover {
            color: #fff;
        }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.main-header {
    background-color: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
}

.logo-text {
    color: #e91e9a;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 40px;
}

/* Make logo more obvious */
.logo-icon-img {
    height: 1520px; /* was ~40px, increase size */
    width: auto;
    object-fit: contain;
}

/* Keep nice padding around it */
.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 14px; /* pull it a little in from the edge */
    border-radius: 10px;
    background-color: #1a1a1a; /* header color */
}

.logo-icon-img {
    height: 140px; /* increase until it feels right: 72–80px */
    width: auto; /* keep original proportions */
    object-fit: contain;
}


/* Ensure header can fit the taller logo */
.main-header {
    height: 140px;          /* allow room for taller logo */
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

    .main-nav a:hover {
        color: #e91e9a;
    }

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 250px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #ccc;
}

    .dropdown-menu a:hover {
        background: #333;
        color: #e91e9a;
    }

/* Give Button */
.btn-give {
    background: transparent;
    border: 2px solid #fff;
    padding: 10px 25px !important;
    transition: all 0.3s ease;
}

    .btn-give:hover {
        background: #e91e9a;
        border-color: #e91e9a;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 20px;
}

    .mobile-nav.active {
        right: 0;
    }

.mobile-nav-close {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    margin-bottom: 30px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    /* Fill the viewport but leave room for the tall header (≈140px) */
    height: calc(100vh - 140px);
    min-height: 480px;
    max-height: 900px;
    overflow: hidden;
}
/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;

}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;   /* neutral default */
    background-repeat: no-repeat;
    filter: brightness(0.6);
}

/* CRITICAL FIX - Slide Background Images */
.hero-slide .slide-bg,
.slide-bg,
.hero-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;  /* Increased from 3 */
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; 
}
.hero-content h1,
.hero-content h2 {
    margin: 0;
    z-index: 11;
}

.hero-content a.btn,
.hero-content .hero-btn,
a[href*="youtube"][class*="btn"],
a[href*="JOIN"] {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    color: white !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid white;
    transition: all 0.3s ease;
    z-index: 12;
    margin-top: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content .btn:hover,
.hero-content a.btn:hover,
.hero-content .hero-btn:hover {
    background: white;
    color: #e91e63 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Specific fix for "JOIN HERE" button */
a[href*="youtube"]:has(> *:contains("JOIN")) {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}


.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

/* Fine-tune the “family” hero image */
.slide[data-bg*="family1"] .slide-bg {
    background-size: cover;
    background-position: center 70%;  /* or 75% depending on your image */
}

.slide[data-bg*="family1"] .slide-content {
    justify-content: flex-end;
    padding-bottom: 4rem;
}

.title-script {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.title-bold {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.3s both;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}

.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.btn-join i {
    font-size: 1.3rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */
.section-title {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

    .section-title.light {
        color: #fff;
    }

.underline {
    width: 100px;
    height: 3px;
    background: #1a1a1a;
    margin: 0 auto 30px;
}

    .underline.dark {
        background: #1a1a1a;
        margin: 0 0 30px;
    }

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome-section {
    padding: 80px 20px;
    text-align: center;
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   GRADIENT BANNER
   ======================================== */
.gradient-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 20px;
    text-align: center;
}

    .gradient-banner .container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

.btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background: #fff;
        color: #764ba2;
    }

/* ========================================
   JOIN SECTION
   ======================================== */
.join-section {
    padding: 80px 20px;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.join-left h3 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 20px;
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #1a1a1a;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

    .btn-watch:hover {
        background: #1a1a1a;
        color: #fff;
    }

.flyer {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    padding: 80px 20px;
    background: #fff;
}

.response-form {
    max-width: 800px;
    margin: 40px auto 0;
}

.checkbox-group {
    margin-bottom: 30px;
}

    .checkbox-group p {
        margin-bottom: 15px;
        font-weight: 600;
    }

    
    .checkbox-group label {
        display: block;
        margin-bottom: 10px;
        cursor: pointer;
        padding-left: 30px;
        position: relative;
    }

    .checkbox-group input[type="checkbox"] {
        position: absolute;
        left: 0;
        top: 3px;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: none;
        background: #f0f0f0;
        font-family: inherit;
        font-size: 14px;
        border-radius: 0;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .input-icon input {
        padding-left: 45px;
    }

.btn-submit {
    display: block;
    width: 100%;
    padding: 18px;
    background: #fff;
    border: 2px solid #1a1a1a;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: #1a1a1a;
        color: #fff;
    }

/* ========================================
   QUICK RESOURCES SECTION
   ======================================== */
.resources-section {
    background: #1a1a1a;
    padding: 80px 20px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

    .resource-card:hover {
        transform: translateY(-5px);
    }

    .resource-card i {
        font-size: 50px;
        color: #f7c948;
        margin-bottom: 20px;
        display: block;
    }

    .resource-card span {
        display: block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .resource-card::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: #f7c948;
        margin-top: 15px;
    }

/* ========================================
   CONNECT SECTION
   ======================================== */
.connect-section {
    padding: 80px 20px;
    background: #fff;
}

    .connect-section .subtitle {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
        font-size: 16px;
        line-height: 1.8;
    }

.pink {
    color: #e91e9a;
}

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

.ministry-card {
    text-align: center;
    transition: transform 0.3s ease;
}

    .ministry-card:hover {
        transform: translateY(-5px);
    }

.ministry-img {
    height: 250px;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.ministry-card h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 16px;
    color: #fff;
}

  .services-intro {
max-width: 620px;
margin: 0 auto 32px;
font-size: 16px;
line-height: 1.7;
text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;   /* centers them */
    align-items: flex-start;
    gap: 40px;                 /* space between columns */
    text-align: center;        /* aligns text within each column */
    margin-top: 50px;
}

.service-col h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-col p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.services-section .container {
max-width: 1100px;
margin: 0 auto;
padding: 0; /* important: no fixed side padding here if you pad the section */
box-sizing: border-box;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 20px;
    background: #fff;
}

.contact-subtitle {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    max-width: 500px;
}

.map-container {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

    .map-container .placeholder-img {
        height: 100%;
    }
    
.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Instagram Section */
.instagram-live-section {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    padding: 4rem 2rem;
    text-align: center;
}

    .instagram-live-section .section-title {
        color: #fff;
    }

    .instagram-live-section .services-intro {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
    }

.instagram-embed-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .instagram-cta:hover {
        background: rgba(255, 255, 255, 0.35);
        border-color: #fff;
        transform: scale(1.05);
    }

    .instagram-cta i {
        font-size: 2rem;
    }

/* Limit the Instagram blockquote width */
.instagram-embed-wrapper .instagram-media {
    max-width: 400px !important;
    min-width: 300px !important;
    margin: 0 !important;
}
/* ========================================
   FOOTER
   ======================================== */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        color: #fff;
        font-size: 20px;
        transition: color 0.3s ease;
    }

        .footer-social a:hover {
            color: #e91e9a;
        }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

    .footer-bottom p {
        font-size: 13px;
        color: #888;
    }

/* ========================================
   PAGE HERO (About, Give, etc.)
   ======================================== */
.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: block;
    margin-bottom: 0;
}

    .page-hero > .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    }

.page-hero > .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-hero > .hero-content {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

  .page-hero > .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    }

   .page-hero > .hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    }


.give-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    .give-hero .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .give-hero .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 2;
    }

    .give-hero .hero-content {
        position: relative;
        z-index: 3;
    }

    .give-hero h1 {
        font-size: 72px;
        font-weight: 300;
        margin-bottom: 20px;
        letter-spacing: 10px;
    }

.hero-quote {
    font-size: 28px;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.4;
}

.quote-ref {
    font-size: 16px;
    font-style: italic;
}

/* ========================================
   GIVE PAGE
   ======================================== */
/* Main Section Layout */
.give-section {
    padding: 60px 0;
}

.give-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* Left Section */
.give-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Cards Layout */
.give-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card Styling */
.give-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-decoration: none;
    color: #333;
}

.give-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Icons */
.give-card img {
    width: 70px;
    height: auto;
    margin-bottom: 12px;
}

/* Card Text */
.give-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.give-card p {
    font-size: 14px;
    color: #666;
}

/* Right Side Hero Image */
.give-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.give-right .give-hero {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.give-right h4 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}






/* ========================================
   ABOUT PAGE
   ======================================== */
.about-welcome {
    padding: 80px 20px;
    text-align: center;
}

    .about-welcome p {
        max-width: 900px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.8;
        color: #555;
    }

.pastors-section {
    padding: 80px 20px;
    background: #e8e8e8;
}

.pastors-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.pastor-img-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
}

.pastor-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pastor-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pastor-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.btn-learn-more {
    display: inline-block;
    border: 2px solid #1a1a1a;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-learn-more:hover {
        background: #1a1a1a;
        color: #fff;
    }

.vision-section {
    padding: 80px 20px;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vision-list ul {
    padding-left: 20px;
}

.vision-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    list-style: disc;
}

.vision-list ul ul {
    margin-top: 10px;
    padding-left: 20px;
}

    .vision-list ul ul li {
        list-style: circle;
    }

.vision-img {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* What We Offer Section */
.what-we-offer-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.what-we-offer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

/* Card Icon */
.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

/* Card Title */
.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Card Description */
.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

/* Community Banner */
.community-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 0;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-offer-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* ========================================
   E-MEMBERSHIP PAGE
   ======================================== */
.membership-section {
    padding: 80px 20px;
    min-height: 80vh;
}

    .membership-section .section-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 40px;
    }

.membership-form {
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   ICARE PAGE
   ======================================== */
.icare-section {
    padding: 80px 20px;
}

.icare-header {
    text-align: center;
    margin-bottom: 50px;
}

.icare-icon {
    font-size: 60px;
    color: #e91e9a;
    margin-bottom: 20px;
}

.icare-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.icare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.icare-card {
    background: #f9f9f9;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .icare-card:hover {
        background: #e91e9a;
        color: #fff;
        transform: translateY(-5px);
    }

        .icare-card:hover i {
            color: #fff;
        }

    /* Continuing from .icare-card i */
    .icare-card i {
        font-size: 40px;
        color: #e91e9a;
        margin-bottom: 20px;
        display: block;
    }

    .icare-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .icare-card p {
        font-size: 13px;
        line-height: 1.6;
        color: #666;
    }

    .icare-card:hover p {
        color: rgba(255,255,255,0.9);
    }

.icare-contact {
    text-align: center;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 10px;
}

    .icare-contact h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .icare-contact p {
        margin-bottom: 25px;
        color: #666;
    }

/* ========================================
   404 ERROR PAGE
   ======================================== */
.error-section {
    min-height: calc(100vh - 100px);
    background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
}

.error-left h1 {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.error-line {
    width: 100px;
    height: 3px;
    background: #fff;
    margin-bottom: 30px;
}

.error-left p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.error-code {
    font-size: 180px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1;
}

.error-right p {
    font-size: 20px;
    color: #fff;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===== Global Placeholder Images ===== */
/* Base style for anything with .placeholder-img */

.placeholder-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Fake “image” look */
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.12) 0, transparent 50%),
        linear-gradient(135deg, #141727 0%, #222b48 40%, #3b4371 100%);
    color: rgba(255, 255, 255, 0.85);

    border-radius: 16px;
    overflow: hidden;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 20px;
}

/* Hero background placeholders (big banners) */
.hero-bg.placeholder-img {
    min-height: 340px;
}

/* Map & large content blocks */
.map-container .placeholder-img,
.full-width .placeholder-img {
    min-height: 260px;
    border-radius: 12px;
}

/* Smaller card-style placeholders (e.g. give cards, info cards if needed) */
.give-card .placeholder-img,
.info-card .placeholder-img {
    min-height: 140px;
    border-radius: 12px;
}

/* Make placeholder text slightly subtle on mobile */
@media (max-width: 768px) {
    .placeholder-img {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        padding: 16px;
    }
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ministry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-slider {
        height: 450px;
    }

    .title-script {
        font-size: 50px;
    }

    .title-bold {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .join-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .give-hero h1 {
        font-size: 48px;
    }

    .hero-quote {
        font-size: 20px;
    }

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

    .pastor-img-circle {
        margin: 0 auto 30px;
    }

    .pastor-details {
        grid-template-columns: 1fr;
    }

    .vision-content {
        grid-template-columns: 1fr;
    }

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

    .error-code {
        font-size: 120px;
    }
}

/* Mobile Portrait */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
         min-height: 500px;
    }

    .title-script {
        font-size: 40px;
    }

    .title-bold {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 24px;
    }

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

    .gradient-banner .container {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .resources-grid,
    .ministry-grid,
    .icare-grid,
    .give-options {
        grid-template-columns: 1fr;
    }

    .give-hero h1 {
        font-size: 36px;
        letter-spacing: 5px;
    }

    .hero-quote {
        font-size: 16px;
        padding: 0 20px;
    }

    .error-left h1 {
        font-size: 26px;
    }

    .error-code {
        font-size: 80px;
    }
}
@media (max-width: 480px) {
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }


    .section-title {
        font-size: 28px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
}


/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-pink {
    color: #e91e9a;
}

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

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

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

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

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */
.contact-page-section {
    padding: 80px 20px;
}

.contact-intro {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 50px;
}

.contact-page-section .contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.info-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

    .info-card:hover {
        background: #e91e9a;
        color: #fff;
    }

        .info-card:hover i {
            color: #fff;
        }

    .info-card i {
        font-size: 30px;
        color: #e91e9a;
        margin-bottom: 15px;
    }

    .info-card h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .info-card p {
        font-size: 13px;
        line-height: 1.7;
    }
/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */
.contact-page-section {
    padding: 80px 20px;
}

.contact-intro {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 50px;
}

.contact-page-section .contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.info-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

    .info-card:hover {
        background: #e91e9a;
        color: #fff;
    }

        .info-card:hover i {
            color: #fff;
        }

    .info-card i {
        font-size: 30px;
        color: #e91e9a;
        margin-bottom: 15px;
        display: block;
    }

    .info-card h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .info-card p {
        font-size: 13px;
        line-height: 1.7;
    }

.map-section {
    margin-top: 60px;
}

    .map-section h3 {
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
    }

.map-container.full-width {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

    .map-container.full-width .placeholder-img {
        height: 100%;
    }

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-page-section .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .map-container.full-width {
        height: 300px;
    }
}

/* ========================================
   PAGE HERO - SMALL VERSION
   ======================================== */
.page-hero.small {
    height: 350px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.page-hero .hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

    .page-hero .hero-text h1 {
        font-size: 42px;
        font-weight: 900;
        font-style: italic;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .page-hero .hero-text p {
        font-size: 18px;
        opacity: 0.9;
    }

/* ========================================
   GROUPS & MINISTRIES PAGE
   ======================================== */
.groups-intro {
    padding: 80px 20px;
    text-align: center;
}

    .groups-intro p {
        max-width: 800px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.8;
        color: #555;
    }

.ministry-categories {
    padding: 0 20px 80px;
}

.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e91e9a;
    display: inline-block;
}

.ministry-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ministry-card-large {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .ministry-card-large:hover {
        transform: translateY(-5px);
    }

.ministry-img-large {
    height: 200px;
}

.ministry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.ministry-info {
    padding: 25px;
}

    .ministry-info h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .ministry-info p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.btn-learn {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #e91e9a;
    letter-spacing: 1px;
}

    .btn-learn:hover {
        text-decoration: underline;
    }

/* Service Teams Grid */
.service-teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-team-card {
    background: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .service-team-card:hover {
        background: #e91e9a;
        color: #fff;
        transform: translateY(-5px);
    }

        .service-team-card:hover i {
            color: #fff;
        }

    .service-team-card i {
        font-size: 35px;
        color: #e91e9a;
        margin-bottom: 15px;
        display: block;
    }

    .service-team-card h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .service-team-card p {
        font-size: 13px;
        line-height: 1.5;
    }

/* Join CTA */
.join-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

    .join-cta h2 {
        font-size: 36px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .join-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

/* ========================================
   PRAYER PAGE
   ======================================== */
.prayer-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .prayer-hero .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .prayer-hero .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 2;
    }

    .prayer-hero .hero-text {
        position: relative;
        z-index: 3;
        text-align: center;
        color: #fff;
    }

        .prayer-hero .hero-text h1 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 10px;
        }

.prayer-section {
    padding: 80px 20px;
}

.prayer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.prayer-info h2 {
    text-align: left;
}

.underline.left {
    margin: 0 0 30px 0;
}

.prayer-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.prayer-promises {
    margin-bottom: 30px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .promise-item i {
        color: #e91e9a;
        font-size: 18px;
    }

    .promise-item span {
        font-size: 14px;
        font-weight: 500;
    }

.scripture-box {
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #e91e9a;
    font-style: italic;
}

    .scripture-box p {
        margin-bottom: 10px;
        color: #333;
    }

    .scripture-box span {
        font-size: 14px;
        color: #666;
    }

.prayer-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

    .prayer-form h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 25px;
    }

.checkbox-single {
    margin-bottom: 20px;
}

    .checkbox-single label {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .checkbox-single input {
        width: 18px;
        height: 18px;
    }

/* ========================================
   COUNSELLING PAGE
   ======================================== */
.counselling-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    z-index: 10;
    clear: both;
}

.counselling-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counselling-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counselling-section .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.counselling-section .section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.counselling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.counselling-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.counselling-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(233, 30, 99, 0.15);
    border-color: #e91e63;
}

   .counselling-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
    display: block;
}

.counselling-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counselling-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}


/* ========================================
   BOOK SESSION SECTION
   ======================================== */
.book-session {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.book-session .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.booking-info .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    border-radius: 2px;
    margin-bottom: 25px;
}

.booking-info .underline.left {
    margin-left: 0;
}

.booking-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-item i {
    font-size: 1.5rem;
    color: #e91e63;
    width: 30px;
    text-align: center;
}

.detail-item span {
    font-size: 1rem;
    color: #555;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e91e63, #d81b60);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d81b60, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .counselling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content .btn,
    .hero-content a.btn,
    .hero-content .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
     .hero-content .btn,
    .hero-content a.btn,
    .hero-content .hero-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .counselling-section {
        padding: 60px 0;
    }
    
    .counselling-section .section-title {
        font-size: 2rem;
    }
    
    .counselling-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .booking-info h2 {
        font-size: 2rem;
    }
    
    .book-session {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    .counselling-section .section-title {
        font-size: 1.8rem;
    }
    
    .counselling-card {
        padding: 30px 20px;
    }
    
    .counselling-card i {
        font-size: 2.5rem;
    }
    
    .booking-info h2 {
        font-size: 1.8rem;
    }
    
    .booking-form {
        padding: 25px 15px;
    }
}


/* ========================================
   FAQ PAGE
   ======================================== */
.faq-section {
    padding: 80px 20px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 12px 25px;
    background: #f0f0f0;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

    .faq-tab:hover,
    .faq-tab.active {
        background: #e91e9a;
        color: #fff;
    }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .faq-question:hover {
        color: #e91e9a;
    }

    .faq-question span {
        font-size: 16px;
        font-weight: 600;
    }

    .faq-question i {
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 10px;
}

    .faq-contact h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .faq-contact p {
        margin-bottom: 25px;
        color: #666;
    }

/* === Global Form Styles (Prayer, Counselling, iCare, Membership, Contact, Response) === */

/* Main form shells */
.prayer-form,
.booking-form, /* counselling */
.icare-form,
.membership-form,
.contact-form,
.response-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

    /* Headings inside forms */
    .prayer-form h3,
    .booking-form h2,
    .booking-form h3,
    .icare-form h3,
    .membership-form h1,
    .membership-form h2,
    .contact-form h3,
    .response-form h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 15px;
        color: #2c3e50;
    }

/* Generic form layout */
.form-row {
    display: flex;
    gap: 20px;
}

    .form-row .form-group {
        flex: 1;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 6px;
    }

    /* Inputs, selects, textareas */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="password"],
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 10px 12px;
        border-radius: 6px;
        border: 1px solid #dcdfe6;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        background: #fdfdfd;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
        }

/* Checkboxes + radios */
.checkbox-single label,
.privacy-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 13px;
}

.checkbox-single input[type="checkbox"],
.privacy-checkbox input[type="checkbox"],
.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
}

/* Buttons (submit / create account / etc.) */
.btn-submit,
.btn-create-account {
    display: inline-block;
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-align: center;
}

    .btn-submit:hover,
    .btn-create-account:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(102, 126, 234, 0.4);
    }

    .btn-submit:disabled,
    .btn-create-account:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Mobile tweaks */
@media (max-width: 768px) {
    .prayer-form,
    .booking-form,
    .icare-form,
    .membership-form,
    .contact-form,
    .response-form {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


/* ========================================
   RESPONSIVE - NEW PAGES
   ======================================== */
@media (max-width: 1024px) {
    .ministry-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counselling-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 35vh;
        margin-bottom: 40px;
    }
    .page-hero.small {
        height: 280px;
    }

    .page-hero .hero-text h1 {
        font-size: 28px;
    }

    .page-hero > .hero-content > h1 {
        font-size: 1.5rem;
    }
    
    .page-hero > .hero-content > p {
        font-size: 1rem;
    }

    .ministry-grid-large {
        grid-template-columns: 1fr;
    }

    .service-teams-grid {
        grid-template-columns: 1fr;
    }

    .prayer-content {
        grid-template-columns: 1fr;
    }

    .prayer-form {
        padding: 25px;
    }

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

    .booking-content {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }

    .join-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .faq-categories {
        flex-direction: column;
    }

    .faq-tab {
        width: 100%;
        text-align: center;
    }
}

/* -------------------------------------------
   DESKTOP: Make slides tall like mobile
-------------------------------------------- */
@media (min-width: 992px) {
    .slide {
        min-height: 100vh; /* full height hero like mobile */
        height: 100vh;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .give-content {
        grid-template-columns: 1fr; /* stack left + right */
    }

    .give-options {
        grid-template-columns: 1fr; /* stack the 3 cards vertically */
    }

    .give-right {
        margin-top: 25px; /* spacing below cards */
    }
}


/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-pink {
    color: #e91e9a;
}

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

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

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

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

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hidden {
    display: none !important;
}

/* ========================================
   ABOUT PAGE – FINAL FIXES
   ======================================== */

/* Keep hero banner consistent */
.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    max-height: 480px;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* About layout stripes + spacing */
.about-welcome,
.vision-section {
    padding: 80px 20px;
    background: #ffffff;
}

.pastors-section {
    padding: 80px 20px;
    background: #e8e8e8;
}

.pastors-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: flex-start;
}
.pastor-image {
display: flex;
justify-content: center;
align-items: center;
}

.pastor-img-circle {
width: 320px; /* adjust to match your design /
height: 320px;
border-radius: 50%;
background: #0f1f4a; / your blue background */
overflow: hidden;
position: relative;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}
.pastor-img-circle img {
position: absolute;
top: 50%;
left: 50%;
width: 115%; /* a bit larger so it fills circle */
height: auto;
transform: translate(-50%, -50%);
object-fit: cover;
}

.pastor-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pastor-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pastor-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Vision section layout */
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.vision-list ul {
    padding-left: 20px;
}

.vision-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    list-style: disc;
}

.vision-list ul ul {
    margin-top: 10px;
    padding-left: 20px;
}

.vision-list ul ul li {
    list-style: circle;
}

.vision-img {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive tweaks for About page */
@media (max-width: 768px) {

    .pastors-content,
    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pastor-img-circle {
        width: 240px;
        height: 240px;
        margin: 0 auto 24px;
    }

    .pastor-details {
        grid-template-columns: 1fr;
    }

}




/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .main-header,
    .top-bar,
    .main-footer,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }
}

/* ========================================
   MODERN DROPDOWN MENU (Explore LHP)
   ======================================== */
   

.dropdown {
    position: relative;
}

/* Dropdown container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: #ffffff;
    min-width: 230px;
    padding: 6px 0; /* smaller vertical padding around the list */
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    gap: 0;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.22s ease-out,
        transform 0.22s ease-out,
        visibility 0.22s ease-out;
    z-index: 1001;
    pointer-events: none; /* prevents hover flicker */
}

/* Slide-down + fade-in on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Items */
.dropdown-menu li {
    width: 100%;
}

/* Separator lines between items */
.dropdown-menu li + li {
    border-top: 1px solid #eeeeee;
}

/* Links – tighter spacing */
.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 8px 18px;      /* 🔥 tighter top/bottom spacing */
    font-size: 13px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-radius: 0;       /* flush with separator lines */
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        padding-left 0.18s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #f4f4f4;
    color: #e91e9a;
    padding-left: 22px;     /* tiny slide-in feel */
}




