@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Premium Color Palette from Template */
    --primary-color: #f5a623;
    /* Gold accent */
    --accent-blue: #3c8bda;
    --blue-transparent: rgba(4, 63, 108, 0.937);
    /* Blue for specific items */
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.top-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.6rem 0;
    font-size: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar-link {
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-link:hover {
    color: var(--primary-color);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav {
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section Restructure */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background: url('assets/bible.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(38, 96, 158, 0.693) 0%, rgba(0, 0, 0, 0.58) 100%);
    z-index: 1;
}



.hero-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;

    z-index: -900;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', cursive;
    text-transform: none;
    letter-spacing: normal;
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

/* Search Bar from Template */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    display: flex;
}

.search-container input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 2rem;
    color: white;
    font-size: 1rem;
    letter-spacing: 2px;
    outline: none;
}

.search-container button {
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Service Cards Grid */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.hero-card {
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid var(--glass-border);
    transition: var(--transition);
}

.hero-card:last-child {
    border-right: none;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-card i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.hero-card span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Features Reveal Grid (Cornerstone Section) */
.features-section {
    padding: 8rem 0;
    background: rgba(4, 63, 108, 0.937);

}

.welcome-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-template-areas:
        "f1 f1 f2 f2"
        "f3 f4 f4 f4";
}

.feature-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05)) 1;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.feature-item:hover .feature-img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.plus-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Specifically match template layout grid */
.f1 {
    grid-area: f1;
}

.f2 {
    grid-area: f2;
    height: 350px;
}

.f3 {
    grid-area: f3;
    height: 350px;
}

.f4 {
    grid-area: f4;
    height: 350px;
}

/* Spacing Utility */
.section-spacer {
    height: 100px;
    background: var(--bg-dark);
}

/* About Section */
.about-section {
    background: var(--primary-color);
    padding: 8rem 0;
}

.about-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

/* What's New Section (Split Carousel & Blog) */
.news-section {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.featured-event {
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 2rem;
    background: var(--glass-bg);
}

.event-label {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--primary-color);
    color: black;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.messenger-blog h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.blog-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.blog-date {
    background: var(--primary-color);
    color: black;
    padding: 0.5rem;
    height: fit-content;
    text-align: center;
    font-weight: 800;
    min-width: 60px;
}

.blog-date span {
    display: block;
    font-size: 1.2rem;
}

/* Leadership Grid & Cards */
.leaders-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leader-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.leader-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.leader-info h4 {
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.leader-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About Page Leadership Grid */
.about-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.leadership-card {
    text-align: center;
    background: var(--glass-bg);
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.leader-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-color);
    padding: 5px;
}

.leadership-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Location Map & Contact Section */
.location-section {
    position: relative;
    height: 600px;
    background: url('assets/map-placeholder.jpg') center/cover;
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-color);

    display: flex;
    align-items: center;
}

.contact-card {
    background: rgba(20, 20, 20, 0.95);
    padding: 3rem;
    max-width: 450px;
    border-left: 5px solid var(--primary-color);
    backdrop-filter: blur(10px);
    margin-left: 5rem;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* App Promo Strip */
.promo-strip {
    background: var(--primary-color);
    padding: 3rem 0;
    color: black;
    text-align: center;
}

.promo-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Section Padding Utility */
.section-padding {
    padding: 8rem 0;
    background-color: var(--blue-transparent);
}

/* Footer Restructure */
footer {
    padding: 8rem 0 0;
    background: var(--bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links li {
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.worship-times div {
    margin-bottom: 1.5rem;
}

.worship-times h5 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 2rem;
}

.social-icons i {
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.social-icons i:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Utilities */
.btn-primary {
    background: var(--primary-color);
    color: black;
    padding: 0.8rem 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-blue {
    background: var(--accent-blue);
    color: white;
}

/* Animations and Responsive */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .footer-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: none;
    }

    .contact-card {
        margin-left: 2rem;
        max-width: 350px;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .main-nav .btn-primary {
        display: none;
        /* Hide primary CTA in header on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-dark);
        border-left: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.2rem;
    }

    /* Layout Adjustments */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-padding {
        padding: 4rem 0;
    }

    .contact-card {
        margin: 0;
        max-width: 100%;
        border-left: none;
        border-top: 5px solid var(--primary-color);
    }

    .footer-grid {
        margin-bottom: 3rem;
    }

    .footer-col h4 {
        margin-bottom: 1.5rem;
    }

    .contact-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

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

    .top-bar-link {
        font-size: 0.65rem;
    }
}

/* ========================================
   SHARED / UTILITY — extracted from inline styles
   ======================================== */

/* Nav header CTA button (small) */
.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
}

/* Logo sub-text */
.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* ========================================
   SUB-PAGE HEROES
   ======================================== */
.hero--short {
    height: 60vh;
    object-fit: cover;
    object-position: center;


}

.hero--medium {
    height: 50vh;
}

.hero--short .hero-content h1,
.hero--medium .hero-content h1 {
    font-size: 3.5rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-mission-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Section intro header (centered) */
.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 700;
}

/* Background variant: darker tint */
.bg-darker {
    background: var(--bg-darker);
}

/* Background variant: maroon (sunday school) */
.bg-maroon {
    background: #46102bdf;
}

/* Worship practice cards grid */
.practice-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.practice-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
}

.practice-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.practice-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-muted);
}

/* Aims & Objectives grid */
.aims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.aim-item {
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
    background: #fcfcfc;
    transition: 0.3s;
}

.aim-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.aim-num {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.aim-item p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

/* Leadership section */
.leadership-center {
    text-align: center;
}

.leadership-center h2 {
    margin-bottom: 5rem;
}

.leadership-card {
    max-width: 400px;
    margin: 0 auto 5rem;
}

.pastor-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    margin-bottom: 2rem;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 700;
}

/* Promo strip quote */
.promo-center {
    text-align: center;
}

.promo-center h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

/* ========================================
   YOUTH / SUNDAY-SCHOOL — shared sub-page
   ======================================== */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.content-cta-wrap {
    margin-top: 2rem;
}

/* Scripture / quote cards */
.scripture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.scripture-card {
    border: 1px solid var(--glass-border);
    padding: 3rem;
    background: var(--glass-bg);
    text-align: center;
}

.scripture-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.scripture-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.scripture-ref {
    color: var(--primary-color);
}

/* Leadership avatar circle */
.leader-avatar-wrap {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.leader-avatar {
    width: 150px;
    height: 150px;
    background: var(--glass-bg);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
}

.leader-avatar i {
    font-size: 3rem;
    color: var(--primary-color);
}

.leader-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.5rem;
}

.leader-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Section heading centered */
.section-heading-center {
    text-align: center;
    margin-bottom: 5rem;
}

/* ========================================
   SUNDAY SCHOOL SPECIFIC
   ======================================== */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.level-card {
    border: 1px solid var(--glass-border);
    padding: 3rem;
    background: var(--glass-bg);
    text-align: center;
}

.level-icon-green {
    font-size: 2.5rem;
    color: #6BCB77;
    margin-bottom: 1.5rem;
}

.level-icon-blue {
    font-size: 2.5rem;
    color: #4D96FF;
    margin-bottom: 1.5rem;
}

.level-icon-gold {
    font-size: 2.5rem;
    color: #FFD93D;
    margin-bottom: 1.5rem;
}

.level-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Inspiration block */
.inspiration-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;

}

.inspiration {
    background-color: #05610ac6;
}

.inspiration-wrap h2 {
    margin-bottom: 3rem;
}

.inspiration-quote {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.inspiration-ref {
    color: var(--primary-color);
    margin-top: 1rem;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-img-box:hover img {
    transform: scale(1.1);
}

.img-overlay-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    transition: 0.3s;
}

.gallery-img-box:hover .img-overlay-label {
    opacity: 1;
}

/* Video archive grid */
.video-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item video {
    width: 100%;
    border: 1px solid var(--glass-border);
}

.video-label {
    margin-top: 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ========================================
   CONTACT PAGE — form styles
   ======================================== */
.form-row {
    margin-bottom: 1.5rem;
}

.form-row label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: white;
    border-radius: 4px;
    transition: 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.form-card {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 10px;
}

.submit-btn {
    width: 100%;
    border-radius: 4px;
}

/* ========================================
   INDEX PAGE
   ======================================== */
.giving-section {
    background: var(--bg-darker);
}

.giving-card {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    background: var(--glass-bg);
    text-align: center;
}

.giving-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.giving-bank-name {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.giving-acc {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.giving-branch {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.giving-scripture {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   FOOTER — extracted inline styles
   ======================================== */
.footer-brand-title {
    color: white;
    font-weight: 800;
}

.footer-brand-desc {
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.footer-worship-time p {
    font-size: 0.8rem;
}

.footer-bottom-wrap {
    padding: 0;
}

.footer-designer-link {
    color: var(--primary-color);
}

@media (max-width: 768px) {

    .two-col-grid,
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .practice-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero--short .hero-content h1,
    .hero--medium .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ========================================
   AIMS & OBJECTIVES — Home Page Specific
   ======================================== */
.objectives-section {
    background: var(--blue-transparent);
    padding: 8rem 0;
}

.objective-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.objective-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.objective-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.objective-card:hover img {
    transform: scale(1.1);
}

.objective-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    z-index: 2;
}

.objective-card-overlay h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.objective-card-overlay p {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.9;
}

/* Home dark theme variant for aims */
.home-aims-grid .aim-item {
    background: var(--glass-bg);
    border-left: 3px solid var(--primary-color);
    border-top: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.home-aims-grid .aim-item p {
    color: var(--text-muted);
}

.home-aims-grid .aim-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .objective-cards-grid {
        grid-template-columns: 1fr;
    }

    .objective-card {
        height: 300px;
    }
}