/* ================================================================
   PLYMOUTH PENTECOSTAL CHURCH — Luxury Editorial Light Design System
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ================================================================ */
:root {
    /* Fine Art Color Palette */
    --bg-primary:    #faf8f5; /* Warm Sandstone Alabaster */
    --bg-secondary:  #ffffff; /* Clean Gallery White */
    --bg-dark:       #12100d; /* Deep Espresso Charcoal */
    --gold:          #b58d3c; /* Elegant Amber Gold */
    --gold-light:    #dfc182; /* Warm Champagne Light */
    --gold-dark:     #8f6c24; /* Antique Bronze */
    --text-primary:  #1e1b15; /* Soft Espresso Black */
    --text-muted:    #767064; /* Warm Slate Muted */
    --border:        rgba(181, 141, 60, 0.15); /* Thin gold border tint */
    --border-dark:   rgba(30, 27, 21, 0.08); /* Minimal outline */
    --glass-bg:      rgba(255, 255, 255, 0.85);

    /* Luxury Editorial Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-cap:     'Cinzel', serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    /* Sizing tokens */
    --container-w:  1200px;
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    30px;

    /* Soft organic shadows */
    --shadow-sm:    0 4px 20px rgba(30, 27, 21, 0.03);
    --shadow-md:    0 12px 36px rgba(30, 27, 21, 0.06);
    --shadow-lg:    0 24px 60px rgba(30, 27, 21, 0.1);
    --shadow-gold:  0 8px 24px rgba(181, 141, 60, 0.1);

    /* Fine transitions */
    --ease:         cubic-bezier(0.25, 1, 0.5, 1);
    --dur:          0.45s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { 
    max-width: 100%; 
    display: block; 
    height: auto;
    /* Prevent blurry rendering of resized high-resolution JPG images */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}
a { 
    text-decoration: none; 
    color: inherit; 
    transition: color var(--dur) var(--ease);
}
ul { 
    list-style: none; 
}
button { 
    border: none; 
    background: none; 
    cursor: pointer; 
    font-family: inherit; 
}

/* ================================================================
   3. UTILITY / SHARED
   ================================================================ */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { 
    padding: 120px 0; 
}

.section-header { 
    margin-bottom: 70px; 
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-cap);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-body);
}

.text-center { 
    text-align: center; 
}
.text-center .section-heading { 
    margin-left: auto; 
    margin-right: auto; 
}

/* Utility classes for dark container backgrounds */
.text-white {
    color: #ffffff !important;
}
.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Dynamic Animation reveals on scroll down (Resilient Fallback: visible by default) */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-ready .reveal-up {
    opacity: 0;
    transform: translateY(30px);
}
.js-ready .reveal-left {
    opacity: 0;
    transform: translateX(-35px);
}
.js-ready .reveal-right {
    opacity: 0;
    transform: translateX(35px);
}

.js-ready .reveal-up.visible,
.js-ready .reveal-left.visible,
.js-ready .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Elegant custom button styles */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--gold);
    color: var(--bg-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--gold);
    transition: all var(--dur) var(--ease);
}
.btn-gold:hover {
    background: var(--bg-secondary);
    color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 141, 60, 0.2);
}
.btn-gold i { 
    transition: transform var(--dur) var(--ease); 
    font-size: 0.8rem;
}
.btn-gold:hover i { 
    transform: translateX(4px); 
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border: 1px solid var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--dur) var(--ease);
}
.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-secondary);
    transform: translateY(-2px);
}

/* ================================================================
   5. PRELOADER
   ================================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.hidden { 
    opacity: 0; 
    visibility: hidden; 
}
.preloader-logo-wrap {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}
.preloader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.preloader-text {
    font-family: var(--font-cap);
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 600;
}
@keyframes preloaderPulse {
    0% { transform: scale(0.96); box-shadow: 0 4px 15px rgba(181, 141, 60, 0.08); }
    50% { transform: scale(1.02); box-shadow: 0 12px 30px rgba(181, 141, 60, 0.2); }
    100% { transform: scale(0.96); box-shadow: 0 4px 15px rgba(181, 141, 60, 0.08); }
}

/* ================================================================
   6. HEADER / NAV
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0;
    transition: all var(--dur) var(--ease);
}
.site-header.scrolled {
    top: 14px;
    left: 4%;
    right: 4%;
    width: 92%;
    max-width: var(--container-w);
    margin: 0 auto;
    background: var(--glass-bg);
    border-radius: 100px;
    padding: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.header-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding var(--dur) var(--ease);
}
.site-header.scrolled .header-inner {
    padding: 10px 24px;
}

/* --- HEADER TOP BAR (SERVICE TIMINGS) --- */
.header-top-bar {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.76rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--dur) var(--ease);
}
.top-bar-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 8px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left, .top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}
.top-bar-info i, .top-bar-link i {
    color: var(--gold-light);
    margin-right: 6px;
}
.top-bar-link {
    transition: color 0.3s;
}
.top-bar-link:hover {
    color: var(--gold-light);
}
.site-header.scrolled .header-top-bar {
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: none;
}

/* Text Logo */
.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}
.header-logo-icon {
    height: 52px;
    width: auto;
    display: block;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: height var(--dur) var(--ease);
    image-rendering: -webkit-optimize-contrast;
}
.site-header.scrolled .header-logo-icon {
    height: 40px;
}
.logo-text-block {
    display: flex;
    flex-direction: column;
}
.logo-church {
    font-family: var(--font-cap);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #ffffff; /* White by default on dark hero background */
    transition: color var(--dur) var(--ease);
}
.logo-denom {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--gold-light); /* Light gold by default */
    text-transform: uppercase;
    transition: color var(--dur) var(--ease);
}

/* Navigation Links */
.desktop-nav {
    display: block;
}
.nav-list {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8); /* Light color on dark hero background */
    position: relative;
    padding: 6px 0;
    transition: color var(--dur) var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width var(--dur) var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

/* --- SCROLLED STATE OVERRIDES (WHITE BACKGROUND) --- */
.site-header.scrolled .logo-church {
    color: var(--text-primary);
}
.site-header.scrolled .logo-denom {
    color: var(--gold);
}
.site-header.scrolled .nav-link {
    color: var(--text-primary);
}
.site-header.scrolled .nav-link::after {
    background: var(--gold);
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-cta {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--dur) var(--ease);
}
.header-cta:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}
.site-header.scrolled .header-cta {
    color: var(--gold-dark);
    border-color: var(--gold);
}
.site-header.scrolled .header-cta:hover {
    color: var(--bg-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    z-index: 1001;
}
.hamburger span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all var(--dur) var(--ease);
}
.site-header.scrolled .hamburger span {
    background: var(--text-primary);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   7. MOBILE MENU DRAWER
   ================================================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: var(--bg-secondary);
    z-index: 1000;
    padding: 100px 40px;
    box-shadow: -10px 0 40px rgba(30,27,21,0.05);
    transition: right var(--dur) var(--ease);
}
.mobile-drawer.open {
    right: 0;
}
.drawer-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--text-primary);
}
.drawer-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.drawer-link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}
.drawer-link:hover {
    color: var(--gold);
}
.drawer-cta {
    margin-top: 20px;
    padding: 14px;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    text-align: center;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}
.drawer-cta:hover {
    background: var(--gold);
    color: var(--bg-secondary);
}
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 27, 21, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: opacity var(--dur), visibility var(--dur);
}
.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ================================================================
   8. HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    padding: 220px 0 130px;
    background-image: linear-gradient(135deg, rgba(18, 16, 13, 0.9) 0%, rgba(18, 16, 13, 0.75) 100%), url('assets/church_sanctuary.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-bg-accent {
    display: none;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-copy {
    max-width: 620px;
}

/* Enlarged Maximum Hero Badge containing Logo.jpg image */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 32px;
    font-family: var(--font-cap);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}
.hero-badge-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #ffffff;
    padding: 2px;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}
.headline-accent {
    color: var(--gold-light);
    font-style: italic;
    font-family: var(--font-display);
}

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}
.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn-outline:hover {
    background: #ffffff;
    color: var(--bg-dark);
    border-color: #ffffff;
}

.hero-quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
}
.quick-pill i {
    color: var(--gold-light);
}

.hero-image-panel {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
}
.hero-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.hero-image-gold-border {
    position: absolute;
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}
.hero-image-card-float {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: var(--bg-secondary);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}
.card-float-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-family: var(--font-cap);
    font-weight: 600;
}
.card-float-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
}
.scroll-mouse {
    width: 18px;
    height: 30px;
    border: 1.5px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}
.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelAnim 1.6s infinite;
}
@keyframes scrollWheelAnim {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ================================================================
   10. ABOUT SECTION
   ================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.about-image-col {
    position: relative;
}
.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1/1;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}
.img-accent-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 60%;
    height: 60%;
    background: #f1ede6;
    border-radius: var(--radius-lg);
    z-index: 1;
    border: 1px dashed var(--gold);
}
.img-badge-float {
    position: absolute;
    top: 32px;
    right: -20px;
    background: var(--gold);
    color: var(--bg-secondary);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-cap);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}
.about-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-family: var(--font-display);
    margin-bottom: 36px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.pillar {
    display: flex;
    gap: 18px;
}
.pillar-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 4px;
}
.pillar-body h4 {
    font-family: var(--font-cap);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.pillar-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   11. WEEKLY SERVICES
   ================================================================ */
.services-section {
    background: #fbf9f6;
    position: relative;
    overflow: hidden;
}
.services-bg-blob {
    position: absolute;
    top: 10%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 141, 60, 0.03) 0%, rgba(250, 248, 245, 0) 70%);
    border-radius: 50%;
}
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.svc-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-dark);
    padding: 40px 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.svc-card:hover::before {
    transform: scaleX(1);
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(181, 141, 60, 0.25);
}
.svc-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(181, 141, 60, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}
.svc-card:hover .svc-card-icon-wrap {
    background: var(--gold);
    transform: rotateY(180deg);
}
.svc-card-icon-wrap i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: color 0.4s var(--ease);
}
.svc-card:hover .svc-card-icon-wrap i {
    color: #ffffff;
}
.svc-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.svc-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}
.svc-meta {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}
.svc-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-meta i {
    color: var(--gold);
    font-size: 0.85rem;
}
.svc-featured {
    grid-column: span 2;
    border-left: 3px solid var(--gold);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.svc-featured-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.svc-featured-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
@media (min-width: 1025px) {
    .svc-featured-right {
        padding-left: 20px;
    }
}
.svc-card-badge {
    align-self: flex-start;
    background: rgba(181, 141, 60, 0.1);
    color: var(--gold-dark);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ================================================================
   12. SCRIPTURE BANNER
   ================================================================ */
.scripture-banner {
    background: var(--bg-dark);
    color: var(--bg-secondary);
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.scripture-content {
    max-width: 800px;
    margin: 0 auto;
}
.quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.25;
    margin-bottom: 24px;
}
.scripture-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    line-height: 1.45;
    font-weight: 400;
    margin-bottom: 20px;
    color: #f7f5f2;
}
.scripture-ref {
    font-family: var(--font-cap);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}

/* ================================================================
   13. ACTIVE MINISTRIES
   ================================================================ */
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.min-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
}
.min-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.min-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-dark);
}
.min-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur) var(--ease);
}
.min-card:hover .min-card-img-wrap img {
    transform: scale(1.05);
}
.min-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 27, 21, 0) 50%, rgba(30, 27, 21, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.min-num {
    font-family: var(--font-cap);
    font-size: 0.9rem;
    color: var(--bg-secondary);
    letter-spacing: 0.1em;
    font-weight: 600;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 2px;
}
.min-card-body {
    padding: 30px 24px;
}
.min-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.min-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}
.min-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
}
.min-link i {
    font-size: 0.72rem;
    transition: transform 0.3s;
}
.min-card:hover .min-link i {
    transform: translateX(4px);
}

/* ================================================================
   14. LEADERSHIP SECTION
   ================================================================ */
.leadership-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.leadership-section .section-heading {
    color: #ffffff !important;
}
.leadership-section .section-body {
    color: rgba(255, 255, 255, 0.7) !important;
}
.leadership-bg {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 141, 60, 0.02) 0%, rgba(30, 27, 21, 0) 70%);
    border-radius: 50%;
}
.leaders-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.leader-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all var(--dur) var(--ease);
}
.leader-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(181, 141, 60, 0.2);
}
.leader-photo-wrap {
    position: relative;
    flex-shrink: 0;
}
.leader-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255,255,255,0.08);
}
.leader-photo-ring {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(181,141,60,0.3);
    border-radius: 50%;
    z-index: 1;
}
.leader-role-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-secondary);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 3;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.leader-role-badge i {
    font-size: 0.55rem;
}
.leader-info h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--bg-secondary);
    margin-bottom: 10px;
}
.leader-bio {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
}

/* ================================================================
   15. CONTACT SECTION
   ================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
}
.contact-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.contact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-dark);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}
.contact-card-icon {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 2px;
}
.contact-card-body h4 {
    font-family: var(--font-cap);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.contact-card-body p, .contact-link {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.contact-link {
    display: block;
}
.contact-link:hover {
    color: var(--gold);
}
.social-row {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--dur) var(--ease);
}
.social-btn:hover {
    background: var(--gold);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-card-header {
    margin-bottom: 32px;
}
.form-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.form-card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}
.form-field label span {
    color: #ef4444;
}
.form-field input, .form-field select, .form-field textarea {
    padding: 12px 16px;
    border: 1px solid rgba(30,27,21,0.12);
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-primary);
    transition: all 0.3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 4px rgba(181, 141, 60, 0.08);
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--text-primary);
    color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 4px 12px rgba(30,27,21,0.1);
}
.btn-submit:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.form-status {
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
}
.form-status.success {
    color: #15803d;
}
.form-status.error {
    color: #b91c1c;
}

/* ================================================================
   16. FOOTER SECTION
   ================================================================ */
.site-footer {
    background: #0f0e0c;
    color: rgba(255,255,255,0.7);
    position: relative;
}
.footer-top-band {
    height: 4px;
    background: var(--gold);
    width: 100%;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.25fr 1.25fr;
    gap: 48px;
    padding: 80px 0 40px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}
.footer-logo-image {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 3px;
    border-radius: 50%;
    align-self: flex-start;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 8px;
}
.footer-socials a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    transition: all 0.3s;
}
.footer-socials a:hover {
    background: var(--gold);
    color: var(--bg-secondary);
    border-color: var(--gold);
}
.footer-col-title {
    font-family: var(--font-cap);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--bg-secondary);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s;
}
.footer-nav a:hover {
    color: var(--gold-light);
}
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
.footer-contact-list i {
    color: var(--gold-light);
    margin-top: 4px;
    width: 14px;
    font-size: 0.82rem;
}
.footer-contact-list a {
    transition: color 0.3s;
}
.footer-contact-list a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* ================================================================
   17. DECORATIVE ELEMENTS & UTILITY INTERACTIVE
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--dur) var(--ease);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-secondary);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    border-top: 1px solid var(--border);
    grid-template-columns: repeat(3, 1fr);
    z-index: 850;
}
.mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 0;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}
.mobile-action i {
    font-size: 1rem;
}
.mobile-action.primary {
    background: var(--gold);
    color: var(--bg-secondary);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-bg-accent {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
    }
    .hero-badge, .hero-headline, .hero-actions, .hero-quick-pills {
        justify-content: center;
        align-items: center;
    }
    .hero-image-panel {
        justify-content: center;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-cards-grid, .ministries-grid, .leaders-row {
        grid-template-columns: 1fr;
    }
    .svc-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-cta { display: none; }
    .hamburger { display: flex; }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards, .pillars-grid {
        grid-template-columns: 1fr;
    }
    .leader-card {
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .mobile-action-bar {
        display: grid;
    }
    body {
        padding-bottom: 60px;
    }
}

/* ================================================================
   12. YOUTUBE EMBED & SERMONS SECTION
   ================================================================ */
.sermons-section {
    position: relative;
    background: var(--bg-secondary);
}
.sermons-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.sermons-video-container {
    background: #000000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.sermons-info-col {
    padding-left: 20px;
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulseLive 1.5s infinite;
}
@keyframes pulseLive {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.sermon-meta-list {
    margin: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.sermon-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.sermon-meta-item:last-child {
    margin-bottom: 0;
}
.sermon-meta-item i {
    color: var(--gold);
    width: 20px;
}
.btn-mail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    transition: color var(--dur) var(--ease);
}
.btn-mail-link:hover {
    color: var(--gold-dark);
}

@media (max-width: 1024px) {
    .sermons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .sermons-info-col {
        padding-left: 0;
    }
    .live-badge {
        justify-content: center;
    }
}
