@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:       #0f2236;
    --navy-mid:   #1a3a52;
    --navy-light: #224a66;
    --gold:       #f4b41a;
    --gold-dark:  #d4960f;
    --gold-glow:  rgba(244, 180, 26, 0.25);
    --white:      #ffffff;
    --off-white:  #f7f5f0;
    --text-dark:  #1a1a2e;
    --text-mid:   #4a5568;
    --text-light: #718096;
    --border:     rgba(0,0,0,0.08);
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; touch-action: pan-x pan-y; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════
   ANNOUNCEMENTS
══════════════════════════ */

.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

#announcement-popup {
    z-index: 10001; /* Must be higher than splash screen z-index */
}

.popup-overlay.show {
    display: flex !important; /* Forces the flexbox to activate */
}

.popup-content {
    background: var(--white);
    padding: 70px 40px;
    border-radius: var(--radius-md);
    position: relative;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-overlay.show { display: flex; }
.popup-overlay.show .popup-content { transform: scale(1); }

.popup-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 2rem; color: var(--text-light);
    cursor: pointer;
}

.popup-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--off-white);
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
}

.popup-body p {
    padding-bottom: 30px;
}

.popup-btn {
    margin-top: 50px;
    padding: 14px 32px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.popup-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}


/* ══════════════════════════
   NAVBAR
══════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 60px; width: auto; display: flex; justify-content: center; align-items: center; padding-top: 10px;}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-menu a:hover { color: var(--navy); background: var(--off-white); }
.nav-menu a.active { color: var(--navy); font-weight: 600; }

.nav-menu a.active::after { display: none; }

.btn-contact {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(15,34,54,0.25);
}

.btn-contact:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 4px 20px var(--gold-glow) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.logo-link, .footer-logo-link {
    display: inline-block;
    text-decoration: none;
    border: none;
    outline: none;
}

.logo-link:hover, .footer-logo-link:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

/* ══════════════════════════
   HOME HERO
══════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    background-image: url('assets/images/glbchero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    min-height: 100svh;
    padding: 10px 0 30px;

}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
}

.hero-overlay { display: none; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 20px 20px 60px;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

.hero-content img { height: 15rem; width: auto; margin-top: 5px; margin-bottom: 0;}



@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 2.6rem);
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-verse {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    opacity: 0.9;
    margin-top: auto;
    margin-bottom: 36px;
    font-style: italic;
    display: block;
}

.verse-ref {
    display: inline;
    margin-left: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    /* font-family: 'DM Sans', sans-serif; */
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 16px 44px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 28px var(--gold-glow);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(244,180,26,0.35);
}

/* ══════════════════════════
   WELCOME SECTION
══════════════════════════ */
.welcome-section {
    padding: 80px 24px;
    background: var(--white);
    text-align: center;
    position: relative;
}

.welcome-section::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 28px auto 0;
    border-radius: 2px;
}

.welcome-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 18px;
}

.welcome-section p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 750px;
    margin: auto;
    line-height: 1.85;
}

/* ══════════════════════════
   INFO CARDS
══════════════════════════ */
.info-cards {
    padding: 0 24px 80px;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
    justify-content: center;
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--off-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--gold);
    color: var(--navy);
}

.card-icon svg { width: 26px; height: 26px; }

.card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.card p { color: var(--text-mid); margin: 6px 0; font-size: 0.95rem; }
.card strong { color: var(--text-dark); font-weight: 600; }


/* ══════════════════════════
   PASSION SECTION
══════════════════════════ */
.passion-section {
    background: var(--navy);
    color: var(--white);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.passion-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244,180,26,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.passion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.passion-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.passion-text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: 16px;
    border-radius: 2px;
}

.passion-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-top: 24px;
    opacity: 0.88;
}

.passion-image img{ 
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}


/* ══════════════════════════
    BIBLE WAY TO HEAVEN
══════════════════════════ */

.home-video-section {
    padding: 80px 24px;
    background: var(--navy-light);
}

.home-video-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.home-video-section h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

.BWTH h2 {
    font-size: calc(2rem + 2vw);
}

.bwth-image {
    flex: 1;
    position: relative;
    display: block;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.bwth-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.bwth-image:hover img {
    transform: scale(1.03);
    filter: brightness(0.75);
}

.bwth-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}

.bwth-image:hover .bwth-play-overlay {
    opacity: 1;
}

.bwth-play-btn {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(244,180,26,0.5);
}

.bwth-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.bwth-play-overlay span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
    .bwth-content {
        flex-direction: column;
    }
}

/* ══════════════════════════
   SERMONS SECTION
══════════════════════════ */

.sermons-section {
    padding: 100px 24px;
    background: var(--off-white);
}

.sermons-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.sermon-icon img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
}

.sermon-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 6px;
}

.sermon-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 28px 0 16px;
}

.sermon-info ul { list-style: none; }

.sermon-info li {
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.sermon-link {
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    transition: var(--transition);
    font-weight: 500;
}

.sermon-link::before {
    content: '';
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f2236'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
}

.sermon-link:hover { color: var(--navy); padding-left: 6px; }
.sermon-link:hover::before { background-color: var(--navy); }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 72px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    max-width: 1160px;
    margin: 0 auto 48px;
}

.footer-logo { height: 54px; margin-bottom: 16px; }

.footer-col img {
    width: 75%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-col h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-col p {
    font-size: 0.9rem;
    /* opacity: 0.7; */
    line-height: 1.7;
    margin: 6px 0;
}

.footer-col p:hover { color: var(--gold); }

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin: 10px 0; }

.footer-col a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-fb-link {
    display: inline-flex;
    text-decoration: none;
    transition: var(--transition);
}

.footer-fb-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-fb-icon svg { width: 18px; height: 18px; }

.footer-fb-link:hover .footer-fb-icon {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    opacity: 0.5;
}



/* ══════════════════════════
   ABOUT HERO
══════════════════════════ */

.about-hero {
    position: relative;
    padding: 30px;
    background-image: url('assets/images/about-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
    opacity: 50%;
    
}

.about-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.about-hero-text h1 span {
    color: var(--gold);
}

.about-hero-text p {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.about-hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 600px;
}

.about-hero-image img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}





/* White card */
.about-hero-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 20px 48px;
    max-width: 480px;
    width: 100%;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.6);
}

.about-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
}

.about-hero-card h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-hero-card h1 span { color: var(--gold-dark); }

.about-hero-card > p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin-bottom: 32px;
}

.about-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--navy);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(15,34,54,0.25);
}

.btn-hero-primary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-hero-secondary {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-hero-secondary:hover { color: var(--gold-dark); gap: 8px; }

/* Image box */
.about-hero-img-box {
    flex: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
}

/* ══════════════════════════
   MISSION / VISION
══════════════════════════ */
.mission-block {
    padding: 100px 24px;
    background: var(--white);
}

.mission-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.mission-text {
    order: 1;
    flex: 1;
}

.mission-image {
    order: 2;
    flex: 1;
}

.mission-text h2,
.vision-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 8px;
}

.mission-text h2::after,
.vision-text h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-top: 16px;
    border-radius: 2px;
}

.mission-text p,
.vision-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-top: 22px;
}

.mission-image img,
.vision-image img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}

.vision-block {
    padding: 100px 24px;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-block::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(244,180,26,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vision-text h2 { color: var(--white); }
.vision-text h2::after { background: var(--gold); }
.vision-text p { color: rgba(255,255,255,0.82); margin-top: 22px; }

/* Responsive */
@media (max-width: 900px) {
    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .mission-text,
    .mission-image {
        order: unset;
        width: 100%;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-image { order: -1; }
}

/* ══════════════════════════
   ZEAL BANNER
══════════════════════════ */
.zeal-banner {
    padding: 72px 24px 48px;
    background: var(--white);
    text-align: center;
    position: relative;
}

.zeal-banner::before {
    content: '✦';
    display: block;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: 8px;
}

.zeal-banner h2 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
}

/* ══════════════════════════
   ABOUT RESPONSIVE
══════════════════════════ */
@media (max-width: 900px) {
    .about-hero {
        padding: 40px 24px;
        min-height: auto;
    }

    .about-hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .about-hero-text {
        padding-bottom: 0;
        text-align: center;
    }

    .about-hero-text p {
        max-width: 100%;
    }

    .about-hero-image {
        max-width: 320px;
        width: 100%;
    }

    .about-hero-image img {
        height: 360px;
    }

    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .mission-text,
    .mission-image {
        order: unset;
        width: 100%;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-image {
        order: -1;
        aspect-ratio: 1/1;
        max-height: 360px;
    }
}

/* ══════════════════════════
   SOULWINNING HERO
══════════════════════════ */

.sw-hero {
    position: relative;
    padding: 30px;
    background-image: url('assets/images/sw-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.sw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
    opacity: 50%;
    
}

.sw-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sw-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
}

.sw-hero-text {
    flex: 1;
}

.sw-hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.sw-hero-text h1 span {
    color: var(--gold);
}

.sw-hero-text p {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.sw-hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 600px;
}

.sw-hero-image img {
     width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}

.sw-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* ══════════════════════════
   SCRIPTURE + STATS
══════════════════════════ */
.sw-content {
    padding: 100px 24px;
    background: var(--white);
}

.sw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    max-width: 1160px;
    margin: 0 auto;
}

.sw-verses { display: flex; flex-direction: column; gap: 40px; }

.sw-verse {
    border: none;
    padding: 28px 32px;
    margin: 0;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.sw-verse:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.sw-verse p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 12px;
    font-style: italic;
}

.sw-verse cite {
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.sw-stats { display: flex; flex-direction: column; gap: 20px; }

.sw-stat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sw-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.sw-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sw-stat-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.sw-stat-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.sw-stat-card strong { color: var(--navy); font-size: 1.3rem; }

/* ══════════════════════════
   GALLERY
══════════════════════════ */
.sw-gallery {
    background: var(--navy);
    padding: 60px 32px;
}

.sw-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1160px;
    margin: 0 auto;
}

.sw-gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
}

.sw-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.sw-gallery-item:hover img { transform: scale(1.08); }

.sw-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #1e3a52 0%, #2a5a4e 100%);
    display: none;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════
   SOULWINNING RESPONSIVE
══════════════════════════ */
@media (max-width: 900px) {
    .sw-hero {
        padding: 40px 24px;
        min-height: auto;
    }

    .sw-hero-inner {
        flex-direction: column-reverse;
    }

    .sw-hero-img-box {
        width: 100%;
        aspect-ratio: 1/1;
        max-height: 360px;
    }

    .sw-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sw-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
}

/* ══════════════════════════
   SERMONS PAGE
══════════════════════════ */
.sermons-hero {
    position: relative;
    padding: 30px;
    background-image: url('assets/images/sermons-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.sermons-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
    opacity: 50%;
    
}

.sermons-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}


.sermons-hero-text {
    flex: 1;
}

.sermons-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
}

.sermons-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sermons-hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}

.sermons-hero-text h1 span {
    color: var(--gold);
}

.sermons-hero-text p {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.sermons-hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 600px;
}

.sermons-hero-image img {
     width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}


/* Verse Banner */
.sermons-verse-banner {
    background: var(--navy);
    padding: 56px 24px;
}

.verse-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.verse-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 0.7;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
    user-select: none;
}

.verse-banner-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 14px;
}

.verse-banner-text cite {
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.06em;
}

/* Sermons Main */
.sermons-main {
    padding: 90px 24px;
    background: var(--off-white);
}

.sermons-list-section {
    padding: 90px 24px;
    background: var(--off-white);
}

.sermons-header {
    margin-bottom: 44px;
}

.sermons-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-top: 8px;
}

.sermons-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-top: 14px;
    border-radius: 2px;
}

/* Search Bar */
.sermons-search {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    color: var(--text-light);
    pointer-events: none;
}

.search-input-wrap input {
    width: 100%;
    padding: 16px 50px 16px 52px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-input-wrap input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.search-input-wrap input::placeholder { color: var(--text-light); }

.search-clear {
    position: absolute;
    right: 18px;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-clear:hover { background: var(--gold); color: var(--navy); }

.search-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover { border-color: var(--gold); color: var(--navy); }

.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* Sermon Cards */
.sermons-featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

.sermon-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sermon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.sermon-card.hidden,
.sermon-list-item.hidden {
    display: none;
}

.sermon-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--navy);
}

.sermon-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.sermon-card:hover .sermon-card-thumb img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.sermon-thumb-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: none;
}

.sermon-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(244,180,26,0.45);
    transition: var(--transition);
}

.sermon-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }

.sermon-card:hover .sermon-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 10px 32px rgba(244,180,26,0.55);
}

.sermon-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.sermon-badge.bible-study {
    background: var(--navy);
    color: var(--white);
}

.sermon-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sermon-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.sermon-card-body h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sermon-card-body p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.sermon-watch-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.sermon-card:hover .sermon-watch-link { color: var(--navy); }

/* Sermon List */
.sermons-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sermon-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.sermon-list-item:last-child { border-bottom: none; }

.sermon-list-item:hover {
    background: var(--off-white);
    padding-left: 36px;
}

.sermon-list-play {
    width: 42px; height: 42px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}

.sermon-list-play svg { width: 16px; height: 16px; margin-left: 2px; }

.sermon-list-item:hover .sermon-list-play {
    background: var(--gold);
    color: var(--navy);
}

.sermon-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sermon-list-type {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.sermon-list-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
}

.sermon-list-date {
    font-size: 0.82rem;
    color: var(--text-light);
}

.sermon-list-arrow {
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition);
}

.sermon-list-item:hover .sermon-list-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* Sermons Responsive */
@media (max-width: 768px) {
    .sermons-featured-grid { grid-template-columns: 1fr; }
    .sermons-hero { padding: 40px 24px; }
    .verse-quote-mark { font-size: 4rem; }
    .sermon-list-item { padding: 18px 24px; }
    .sermon-list-item:hover { padding-left: 26px; }
}

/* ══════════════════════════
   NAVBAR RESPONSIVE
══════════════════════════ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        width: 100%;
        text-align: center;
        transition: 0.35s cubic-bezier(0.4,0,0.2,1);
        box-shadow: var(--shadow-lg);
        padding: 24px 0;
        gap: 4px;
        z-index: 999;
    }

    .nav-menu.active { left: 0; }

    .menu-toggle { display: flex; }

    .hero h1 { font-size: 2.4rem; }

    .passion-content,
    .sermons-content { grid-template-columns: 1fr; gap: 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════
   MOBILE
══════════════════════════ */
@media (max-width: 600px) {
    .hero {
        max-height: none;
        min-height: 100svh;
        padding: 0;
        margin-top: 0;
    }

    .hero-content {
        padding: 24px 16px 40px;
        height: auto;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .hero-content img {
        height: 15rem;
        width: auto;
        margin-bottom: 20px;
    }

    .hero-verse {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .passion-image img {
    height: 280px;
    border-radius: var(--radius-lg);
}

.mission-image img,
.vision-image img {
    height: 280px;
    border-radius: var(--radius-lg);
}


    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .passion-content { gap: 32px; }
}


/* ══════════════════════════
   LEADERSHIP PAGE STYLES
══════════════════════════ */


.leadership-hero {
    position: relative;
    padding: 30px;
    background-image: url('assets/images/leadership-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    opacity: 50%;
    z-index: 0;
    
}

.leadership-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.leadership-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;

    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
}

.leadership-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.leadership-hero h1 span {
    color: var(--gold);
    display: inline-block;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-top: 12px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Pastor Section */
.pastor-section {
    padding: 100px 24px;
    background: var(--white);
}

.pastor-profile {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.pastor-image-wrapper {
    position: sticky;
    top: 100px;
}

.pastor-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: var(--off-white);
}

.pastor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pastor-image:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.image-placeholder::before {
    content: 'Image';
}

.pastor-name-tag {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--gold);
}

.pastor-name-tag h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.pastor-name-tag p {
    color: var(--text-mid);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Pastor Bio */
.bio-content {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 24px;
}

.bio-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.pastor-highlight {
    display: flex;
    gap: 20px;
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-md);
    margin: 32px 0;
    border-left: 4px solid var(--gold);
}

.pastor-highlight svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.pastor-highlight h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.pastor-highlight p {
    font-size: 1rem;
    color: var(--text-mid);
    margin: 0;
}

.pastor-links {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.pastor-links p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-mid);
}

.inline-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transform: translateY(-2px);
    gap: 6px;
    transition: var(--transition);
}

.inline-link:hover {
    color: var(--gold);
}

.inline-link svg {
    width: 16px;
    height: 16px;
}

.youtube-link svg {
    width: 20px;
    height: 20px;
    color: #FF0000;
}

.youtube-link:hover svg {
    color: var(--gold);
}

/* Evangelists Section */
.evangelists-section {
    padding: 100px 24px;
    background: var(--off-white);
}

.evangelists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.evangelist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease forwards;
}

.evangelist-card:nth-child(1) { animation-delay: 0.1s; }
.evangelist-card:nth-child(2) { animation-delay: 0.2s; }
.evangelist-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.evangelist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.evangelist-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--off-white);
}

.evangelist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evangelist-card:hover .evangelist-image img {
    transform: scale(1.08);
}

.evangelist-info {
    padding: 32px 28px;
}

.evangelist-info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.evangelist-info h4 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.evangelist-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* Zeal Banner (reused from other pages) */
.zeal-banner {
    background: var(--white);
    padding: 60px 24px;
    text-align: center;
    color: var(--navy);
}

/* Responsive Design */
@media (max-width: 968px) {
    .pastor-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pastor-image-wrapper {
        position: relative;
        top: 0;
    }
    
    .evangelists-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .leadership-hero {
        padding: 120px 20px 80px;
    }
    
    .pastor-section,
    .evangelists-section {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .pastor-image {
        aspect-ratio: 3/4;
    }
    
    .pastor-highlight {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .evangelist-info {
        padding: 24px 20px;
    }
}

/* ══════════════════════════
   EVENTS PAGE
══════════════════════════ */

/* Hero */

.events-hero {
    position: relative;
    padding: 30px;
    background-image: url('assets/images/events-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.events-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
    opacity: 50%;
    
}

.events-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.events-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}




.events-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
}

.events-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.events-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
}

/* Events Section */
.events-section {
    padding: 72px 24px 80px;
    background: var(--off-white);
}

.events-month-group {
    margin-bottom: 48px;
}

.events-month-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Event Card */
.event-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f0f4f8;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.event-card--special {
    background: linear-gradient(135deg, #eef2ff 0%, #f0f4f8 100%);
    border-left: 4px solid var(--gold);
}

/* Date Block */
.event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 28px;
    min-width: 100px;
    text-align: center;
}

.event-day-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.event-day-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

/* Divider */
.event-divider {
    width: 1px;
    height: 60px;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* Event Name */
.event-name {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.event-name p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
}

.event-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 50px;
}

/* Event Details */
.event-details {
    padding: 20px 32px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.event-detail-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    min-width: 60px;
    font-family: 'DM Sans', sans-serif;
}

.event-detail-value {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* No Events State */
.no-events {
    text-align: center;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.no-events-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.no-events-icon svg {
    width: 36px;
    height: 36px;
}

.no-events h3 {
    font-size: 1.8rem;
    color: var(--navy);
}

.no-events p {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.75;
}

/* Events Responsive */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-divider {
        width: 100%;
        height: 1px;
    }

    .event-date-block {
        flex-direction: row;
        gap: 12px;
        padding: 16px 20px;
        align-items: baseline;
    }

    .event-day-num { font-size: 2rem; }

    .event-name { padding: 16px 20px; }

    .event-details {
        padding: 16px 20px;
        width: 100%;
    }
}

/* ══════════════════════════
   GIVE PAGE
══════════════════════════ */

/* Hero */
.give-hero {
    position: relative;
    background-image: url('assets/images/give-hero.png');
    background-size: cover;
    background-position: center;
    padding: 80px 48px;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.give-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
    opacity: 50%;
    
}

.give-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.give-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.give-hero-label {
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--navy);
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
    width: auto;
    
}

.give-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.give-hero-content > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    margin-bottom: 36px;
    text-align: center;
}

/* GCash Card */
.give-gcash-card {
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.gcash-logo-box {
    background: var(--whites);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    flex-shrink: 0;
}

.gcash-logo-box img {
    height: 80px;
    width: auto;
    display: block;
}

.gcash-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    flex-shrink: 0;
}

.gcash-details {
    padding: 24px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.gcash-detail-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gcash-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    min-width: 120px;
    font-family: 'DM Sans', sans-serif;
}

.gcash-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Scripture Section */
.give-scripture {
    padding: 80px 24px;
    background: var(--navy);
}

.give-verse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto;
}

.give-verse-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
}

.give-verse-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.give-verse-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 0.7;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
    display: block;
}

.give-verse-card p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
}

.give-verse-card cite {
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
}

/* Why Give */
.give-why {
    padding: 80px 24px;
    background: var(--off-white);
}

.give-why-header {
    text-align: center;
    margin-bottom: 52px;
}

.give-why-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-top: 10px;
}

.give-why-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.give-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto;
}

.give-why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.give-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.give-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.give-why-card:hover::before { transform: scaleX(1); }

.give-why-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--navy);
    transition: var(--transition);
}

.give-why-card:hover .give-why-icon {
    background: var(--gold);
}

.give-why-icon svg { width: 26px; height: 26px; }

.give-why-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.give-why-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* Give Responsive */
@media (max-width: 768px) {
    .give-hero { padding: 60px 24px; }

    .give-gcash-card {
        flex-direction: column;
        align-items: stretch;
    }

    .gcash-logo-box {
        min-width: unset;
        padding: 20px;
    }

    .gcash-divider {
        width: 100%;
        height: 1px;
    }

    .gcash-details { padding: 20px 24px; }

    .gcash-detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .give-verse-grid,
    .give-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════
   CONTACT PAGE
══════════════════════════ */

/* Hero */
.contact-hero {
    position: relative;
    padding: 30px;
    background-image: url('assets/images/contact-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
    opacity: 80%;
    
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    animation: heroFadeUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* Left Side */
.contact-hero-left {
    flex: 1.2;
}

.contact-hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-left > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 560px;
}

/* Contact Numbers */
.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-number-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-number-row span a {
    color: var(--white);
    text-decoration: none;
}

.contact-number-row span a:hover {
    color: var(--gold-dark);
}


.contact-person {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    min-width: 120px;
    font-family: 'DM Sans', sans-serif;
}

.contact-num {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    font-family: 'DM Sans', sans-serif;
}

/* Right Side — Facebook */
.contact-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.contact-fb-desc {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.75;
    margin-top: 100px;
}

.contact-fb-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-fb-icon {
    width: 56px;
    height: 56px;
    background: none;
    border-radius: var(--radius-sm);
    border: 2px solid var(--white);;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-fb-icon svg { width: 28px; height: 28px; }

.contact-fb-link:hover .contact-fb-icon {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

.contact-fb-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-fb-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
}

.contact-fb-name:hover {
    color: var(--gold);
}

.contact-fb-location {
    font-size: 0.85rem;
    color: var(--white);
}

.contact-fb-location:hover {
    color: var(--gold);
}

/* Info Section */
.contact-info-section {
    padding: 80px 24px;
    background: var(--off-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-info-card:hover::before { transform: scaleX(1); }

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--navy);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gold);
}

.contact-info-icon svg { width: 26px; height: 26px; }

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.contact-info-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-info-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.contact-info-link:hover { color: var(--navy); }

/* Map */
.contact-map {
    line-height: 0;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(20%);
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-hero {
        padding: 60px 24px;
        min-height: auto;
    }

    .contact-hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-hero-inner,
.sw-hero-inner,
.sermons-hero-inner {
    flex-direction: column;
    gap: 32px;
}

.about-hero-image,
.sw-hero-image,
.sermons-hero-image {
    width: 100%;
    max-width: 100%;
    justify-content: center;
}


.about-hero-image img,
.sw-hero-image img,
.sermons-hero-image img {
    width: 100%;
    max-width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
}

.about-hero-text p,
.sw-hero-text p,
.sermons-hero-text p {
    max-width: 100%;
}

}

@media (max-width: 600px) {
    .contact-number-row {
        gap: 16px;
    }

    .contact-person {
        min-width: 100px;
        font-size: 0.95rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* @media (display-mode: standalone) {
    .install-app-btn { display: none; }
} */