/* Core Variables */
:root {
    --bg-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --primary-gold: #d4af37;
    --primary-gold-light: #f3e5ab;
    --secondary-red: #8b0000;
    --text-main: #ffffff;
    --text-muted: #cccccc;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --glass-bg: rgba(26, 26, 26, 0.5);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glass-blur: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.title,
.section-title {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-red), var(--primary-gold));
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 40px;
    /* Boutique Editorial Look */
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: #000;
}

.btn-gold:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: #000;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-hero-outline:hover {
    background: #fff;
    color: #000 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #000;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Navigation */
/* Modern Floating Pill Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1250px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    width: 92%;
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 55px;
    transition: all 0.5s ease;
}

.navbar.scrolled .logo {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 1.3rem;
    /* Clean horizontal layout gap */
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.76rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.4s ease;
    white-space: nowrap;
}

/* Mid-range screen size helper to completely prevent header items from wrapping */
@media (max-width: 1200px) and (min-width: 993px) {
    .nav-links {
        gap: 0.8rem;
    }
    .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    .logo {
        height: 48px;
    }
    .navbar.scrolled .logo {
        height: 38px;
    }
    .nav-container {
        padding: 0 1.2rem;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-right: 1.5rem;
}

.mobile-only-donate {
    display: none;
    /* Hide on desktop */
}

@media (max-width: 992px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
        padding: 0.8rem 0;
    }

    .mobile-only-donate {
        display: block !important;
        /* Show in mobile menu */
        color: var(--primary-gold) !important;
        font-weight: 700;
        border: 1px solid var(--primary-gold);
        padding: 10px 30px !important;
        border-radius: 50px;
        margin-top: 1rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        margin-right: 1.5rem;
    }

    .header-donate-btn {
        display: none !important;
        /* Hide button in mobile header */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Highlighted Donate link in mobile menu */
    .nav-links a[href="#donate"] {
        color: var(--primary-gold);
        font-weight: 700;
        border: 1px solid var(--primary-gold);
        padding: 10px 30px;
        border-radius: 50px;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* Aurient-Inspired Hero Section */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('hero_awakening_1778747176819.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    max-width: 800px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* Reduced gap */
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
    /* Removed margin to fix space */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-left h1 .highlight-gold {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-left h1 .highlight-red {
    color: #ff3c3c;
    text-shadow: 0 0 25px rgba(255, 60, 60, 0.7);
}

.hero-left p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    /* Reduced to fit in container */
    max-width: 550px;
}

.hero-btns {
    margin-bottom: 2rem;
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 4rem;
    right: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    /* Stacked vertically */
    align-items: flex-start;
    gap: 5px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(to bottom, #f7e1ad 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    line-height: 1.1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .hero-container {
        padding: 0 2rem;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 4rem;
        padding-top: 2rem;
        gap: 2rem;
        justify-content: center;
    }

    .split-container {
        flex-direction: column;
        gap: 3rem;
    }

    .sticky-images {
        width: 100%;
    }

    .img-wrapper {
        position: relative;
        top: 0;
    }

    .scroll-content {
        text-align: center;
        align-items: center;
    }

    .content-block p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        align-items: center;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
        /* Reduced gap */
    }

    .hero-left h1 {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
        /* Reduced margin */
    }

    .hero-left p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        /* Added more space between buttons */
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2x2 Grid for numbers */
        gap: 2rem;
        text-align: center;
        margin-top: 3rem;
        justify-items: center;
    }

    .stat-item {
        align-items: center;
    }

    .hero-slider {
        padding-bottom: 60px;
    }
}

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

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .pill-card {
        min-width: 100%;
        height: auto;
        border-radius: 40px;
        padding: 3rem 2rem;
    }
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid transparent;
}

.dot.active {
    background: var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-gold);
    transform: scale(1.3);
}

/* Our Calling */
.our-calling {
    padding: 8rem 0 4rem;
    /* Increased top padding */
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
}

.sticky-images {
    flex: 1;
    position: relative;
}

.img-wrapper {
    position: sticky;
    top: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

.scroll-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    text-align: left;
    /* Left align text on desktop */
}

.our-calling .section-title {
    text-align: left;
    padding-bottom: 10px;
}

.our-calling .section-title::after {
    left: 0;
    transform: none;
}

.content-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 2px;
}

.content-block p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 90%;
}

.number {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-right: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    opacity: 0.8;
}

.quote-block {
    padding: 3rem;
    position: relative;
    border-left: 5px solid var(--primary-gold);
    margin-top: 2rem;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #fff !important;
    font-family: var(--font-heading);
    line-height: 1.6;
}

.quote-author {
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* The Shepherds */
.the-shepherds {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--surface-color));
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Reduced gap for mini look */
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.team-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {

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

@media (max-width: 768px) {

    .team-grid-2,
    .team-grid-3 {
        grid-template-columns: 1fr;
    }
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.5rem;
    font-weight: 300;
    text-align: center;
}

.mb-8 {
    margin-bottom: 2.5rem;
}

.team-card {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 30px;
    /* Slightly smaller radius for mini look */
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.team-card .img-box {
    height: 333px;
    /* Mini height */
    overflow: hidden;
    background: #000;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    filter: contrast(1.1) grayscale(20%);
}

.team-card:hover img {
    transform: scale(1.08);
    filter: contrast(1.1) grayscale(0%);
}

.team-card .info {
    padding: 1.2rem;
    /* Reduced padding */
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* Mini font size */
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.team-card span {
    font-size: 0.65rem;
    /* Mini font size */
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    padding: 3px 12px;
    background: rgba(184, 15, 10, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    align-self: center;
}

/* Daily Bread */
.daily-bread {
    padding: 4rem 0;
}

.featured-video {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.8));
    border-left: 4px solid var(--secondary-red);
}

.video-thumbnail {
    position: relative;
    width: 60%;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
    /* Royal Border */
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    /* Cinematic Glow */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.video-thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.play-ring {
    position: relative;
    z-index: 2;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    padding: 10px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    /* Optical center for play icon */
}

.play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary-gold);
}

.live-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--secondary-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
    z-index: 2;
    letter-spacing: 1px;
}

.video-info {
    flex: 1;
}

.video-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.video-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.media-row {
    margin-top: 2rem;
}

.carousel-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.media-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) var(--surface-color);
}

.media-carousel::-webkit-scrollbar {
    height: 6px;
}

.media-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.media-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.media-card {
    min-width: 300px;
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
    border: none;
    background: rgba(26, 26, 26, 0.8);
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.media-thumb {
    height: 180px;
    background: #1a1a1a;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.5);
    transition: color 0.3s;
}

.media-card:hover .media-thumb {
    color: var(--primary-gold);
}

.media-details {
    padding: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.media-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.media-details span {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.social-banner {
    margin-top: 5rem;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8), rgba(212, 175, 55, 0.1));
}

.social-banner span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-5px) rotate(360deg);
}

/* Fivefold (Interactive Showcase) */
.fivefold-ministry {
    padding: 4rem 0;
    background: var(--bg-color);
    position: relative;
}

.fivefold-showcase {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ff-nav {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.ff-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.ff-btn:hover {
    background: rgba(212, 175, 55, 0.05);
}

.ff-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-bottom-color: var(--primary-gold);
}

.ff-num {
    font-size: 1.1rem;
    color: var(--secondary-red);
    font-family: var(--font-heading);
    margin-right: 1rem;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.ff-btn.active .ff-num {
    opacity: 1;
    color: var(--primary-gold);
    transform: scale(1.1);
}

.ff-name {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.ff-btn.active .ff-name {
    color: #fff;
}

.ff-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.9));
    min-height: 250px;
}

.ff-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ff-panel.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.ff-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
}

.ff-info {
    flex: 1;
}

.ff-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.ff-role {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--secondary-red);
    color: var(--primary-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ff-info p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Ways to Connect (Redesigned Interactive Accordion) */
.ways-to-connect {
    padding: 4rem 0;
}

.programs-grid.full-images {
    display: flex;
    gap: 1.5rem;
    height: 550px;
    width: 100%;
}

.image-card {
    position: relative;
    flex: 1;
    /* Default collapsed state */
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: flex 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    cursor: pointer;
}

.image-card:hover {
    flex: 3;
    /* Expanded state */
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: background 0.5s ease;
}

.image-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.8) 70%, transparent 100%);
}

.prog-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.image-card:hover .prog-icon {
    opacity: 1;
    transform: translateY(0);
}

.image-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: font-size 0.5s ease;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

.image-card:hover h3 {
    font-size: 2.2rem;
    white-space: normal;
    border-left: 5px solid var(--primary-gold);
}

.card-overlay p {
    color: #ddd;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.image-card:hover .card-overlay p {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    margin-top: 1rem;
}

.prog-time {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-gold-light);
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    align-self: flex-start;
}

.image-card:hover .prog-time {
    opacity: 1;
    transform: translateY(0);
}

/* Upcoming Gatherings (Animated Slider) */
.upcoming-events {
    padding: 4rem 0;
    background: var(--surface-color);
    overflow: hidden;
}

.gatherings-slider-wrapper,
.gallery-slider-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.gatherings-slider-container,
.gallery-slider-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    padding: 2rem 0;
    width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gatherings-list-wrapper {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.view-fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.gatherings-slider-container::-webkit-scrollbar,
.gallery-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gatherings-track {
    display: flex;
    gap: 2.5rem;
    padding: 0 5vw;
    width: max-content;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--primary-gold);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.prev-nav {
    left: 3%;
}

.next-nav {
    right: 3%;
}

.gatherings-track .event-card:hover {
    transform: translateY(-10px);
}

/* View Toggle Styling */
.view-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-btn i {
    font-size: 1rem;
    color: var(--primary-gold);
}

.toggle-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.toggle-btn.active i {
    color: #000;
}

/* Schedule Grid Styling */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.schedule-card {
    display: flex;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.schedule-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.date-block {
    background: linear-gradient(135deg, var(--secondary-red), #500000);
    color: #fff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-align: center;
}

.date-block .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.date-block .day {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin: 5px 0;
}

.date-block .weekday {
    font-size: 0.75rem;
    opacity: 0.8;
}

.schedule-info {
    padding: 1.5rem;
    flex: 1;
}

.schedule-info h3 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.schedule-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.schedule-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: #fff;
}

.schedule-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-meta i {
    color: var(--primary-gold);
    width: 16px;
}

.event-type-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.gatherings-track .event-card {
    width: 380px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.gatherings-track .event-card:hover {
    transform: translateY(-10px);
}

.event-img-wrap {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

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

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

.event-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.7);
    /* Deep red hover overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Fivefold Ministry Grid */
/* Fivefold Header Split Layout */
.ff-header-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ff-header-content {
    flex: 1.2;
}

.ff-side-banner {
    flex: 1;
    height: 320px;
    /* Slightly taller for side look */
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ff-side-banner:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2);
}

.ff-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.ff-side-banner:hover .ff-banner-img {
    transform: scale(1.1);
    filter: brightness(1);
}

.section-title.left {
    text-align: left;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.ff-side-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

@media (max-width: 992px) {
    .ff-header-split {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .section-title.left {
        text-align: center;
    }

    .section-title.left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ff-side-banner {
        width: 100%;
        height: 250px;
    }
}

.fivefold-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    /* Reduced since header has margin */
}

.ff-grid-card {
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    min-height: 250px;
    justify-content: center;
}

.ff-grid-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.ff-grid-card .ff-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary-gold);
    opacity: 0.5;
}

.ff-grid-card .ff-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.ff-grid-card h3 {
    font-size: 1.2rem;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ff-grid-card .ff-role {
    font-size: 0.75rem;
    color: var(--secondary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    background: rgba(184, 15, 10, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(184, 15, 10, 0.2);
}

.ff-grid-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .fivefold-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fivefold-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .fivefold-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 in 1 line as requested */
        gap: 10px;
    }

    .ff-grid-card {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }

    .ff-grid-card:last-child {
        grid-column: span 2;
        /* Make the 5th card full width */
    }

    .ff-grid-card h3 {
        font-size: 1rem;
    }

    .ff-grid-card p {
        font-size: 0.75rem;
    }
}

.event-card:hover .event-hover-content {
    opacity: 1;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.event-info {
    padding: 2rem;
}

.event-info h3 {
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.event-info p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.event-date {
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-date i {
    color: var(--primary-gold);
}

/* Visual Testimony (Gallery Slider) */
.visual-gallery {
    padding: 4rem 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 0 5vw;
    width: max-content;
}

.gallery-track .gallery-item {
    width: 450px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hover-zoom:hover .gallery-img {
    transform: scale(1.08);
}

.hover-zoom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.hover-zoom:hover::after {
    opacity: 1;
}

/* Donate with Coin Animation */
.donate-section {
    padding: 4rem 0;
    background: linear-gradient(to top, var(--surface-color), var(--bg-color));
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.donate-card {
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hover-3d {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.hover-3d:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.main-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    transition: transform 0.4s, opacity 0.3s;
}

.donate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.donate-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Coin Animation CSS */
.animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s;
}

.donate-card.animating .animation-overlay {
    opacity: 1;
    pointer-events: all;
}

.coin {
    font-size: 3rem;
    color: #fff;
    position: absolute;
    top: -50px;
    /* Start above */
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.box-slot {
    width: 80px;
    height: 14px;
    background: #000;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 1),
        0 0 15px rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 35%;
    opacity: 0;
    z-index: 5;
}

/* Animation Classes added by JS */
.coin.drop {
    animation: dropCoin 1.2s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

.box-slot.show {
    opacity: 1;
    transition: opacity 0.3s;
}

@keyframes dropCoin {
    0% {
        top: -20px;
        opacity: 0;
        transform: rotateY(0deg) scale(1);
    }

    10% {
        opacity: 1;
    }

    50% {
        top: 30%;
        opacity: 1;
        transform: rotateY(180deg) scale(0.9);
    }

    85% {
        top: 60%;
        opacity: 1;
        transform: rotateY(360deg) scale(0.8);
    }

    100% {
        top: 65%;
        opacity: 0;
        transform: rotateY(360deg) scale(0.5);
    }
}

/* Header Button Specific Animation Styles */
.header-donate-btn {
    position: relative;
    overflow: hidden;
    min-width: 120px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Continuous Attraction Shimmer */
.header-donate-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(45deg);
    animation: attractionShimmer 3s infinite;
}

@keyframes attractionShimmer {
    0% {
        left: -150%;
    }

    30% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Pulsing Attraction Ring */
.header-donate-btn:not(.animating) {
    animation: attractionPulse 2s infinite;
}

@keyframes attractionPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.header-donate-btn.animating .btn-text {
    opacity: 0;
}

.header-donate-btn .animation-overlay {
    background: var(--primary-gold);
    border-radius: 50px;
}

.header-donate-btn .coin {
    font-size: 1.5rem;
    color: #fff;
    top: -30px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.header-donate-btn .box-slot {
    width: 45px;
    height: 10px;
    border-color: #fff;
    background: #000;
    bottom: 30%;
    border-radius: 20px;
}

.header-donate-btn.animating .animation-overlay {
    opacity: 1;
    pointer-events: all;
}

.header-donate-btn.animating .coin {
    opacity: 1;
}

.header-donate-btn.animating .box-slot {
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 450px;
    width: 90%;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--secondary-red);
}

#modalImg {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    border-radius: 16px;
    border: 5px solid #fff;
}

/* Banner Modal Specifics */
.modal-content.banner-content {
    max-width: 800px;
    padding: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

#bannerModalImg {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    margin: 0;
    border: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.banner-close {
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: #fff;
}

.banner-close:hover {
    color: var(--primary-gold);
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
    mix-blend-mode: screen;
    filter: contrast(1.2) brightness(1.1);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-newsletter h3,
.footer-contact h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.footer-contact p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 5px;
}

.footer-map {
    margin-bottom: 4rem;
    padding: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .fivefold-showcase {
        flex-direction: column;
    }

    .ff-nav {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .ff-btn {
        min-width: 120px;
    }

    .ff-display {
        padding: 2rem;
    }

    .ff-nav {
        overflow-x: auto;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .ff-nav::-webkit-scrollbar {
        display: none;
    }

    .ff-btn {
        padding: 1rem 1.5rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .ff-panel {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
        position: relative;
        opacity: 0;
        display: none;
    }

    .ff-panel.active {
        display: flex;
        opacity: 1;
    }

    .ff-icon {
        font-size: 4rem;
    }

    .ff-info h3 {
        font-size: 2rem;
    }

    .grid-4,
    .programs-grid,
    .donate-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid.full-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 1.5rem;
    }

    .programs-grid.full-images .image-card {
        height: 450px;
    }

    /* Disable accordion on smaller screens, show all content */
    .programs-grid.full-images .image-card:hover {
        flex: 1;
        transform: scale(1.02);
    }

    .programs-grid.full-images .card-overlay {
        padding: 1.8rem 1.2rem 1.2rem !important;
    }

    .programs-grid.full-images .prog-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .card-overlay p,
    .prog-time {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        max-height: 200px !important;
        margin-top: 0.6rem !important;
    }

    .image-card h3 {
        white-space: normal;
        font-size: 1.8rem;
    }

    .slide-content .title {
        font-size: 4rem;
    }

    .split-container {
        flex-direction: column;
    }

    .img-wrapper {
        position: relative;
        top: 0;
    }

    .featured-video {
        flex-direction: column;
    }

    .video-thumbnail {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr !important;
        /* 2 cards per line */
        gap: 15px;
    }

    .team-card h3 {
        font-size: 1rem;
    }

    .team-card span {
        font-size: 0.7rem;
    }

    .image-card h3 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
        white-space: normal !important;
    }

    .programs-grid.full-images,
    .programs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid.full-images .image-card {
        height: 480px !important;
        margin-bottom: 1.5rem !important;
    }

    .donate-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Column grid */
        gap: 15px;
    }

    .donate-card:first-child {
        grid-column: span 2;
        /* Cash App takes full width on top */
    }

    .donate-card h3 {
        font-size: 1.1rem;
    }

    .donate-card p {
        font-size: 0.8rem;
    }

    .donate-card .btn {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--primary-gold);
    }

    .nav-links.active {
        display: flex;
    }

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

    .slide-content .title {
        font-size: 3rem;
    }

    .expanded-gallery {
        column-count: 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-content .title {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Ministry Administration Highlight */
.ministry-admin {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--surface-color), var(--bg-color));
}

.admin-highlight {
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    border-radius: 60px;
    /* Massive radius for the soft boutique look */
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.95));
}

.admin-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    z-index: 1;
}

.admin-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.admin-text {
    flex: 1.5;
}

.admin-label {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(139, 0, 0, 0.4);
    border: 1px solid var(--secondary-red);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
}

.admin-text h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.admin-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 90%;
}

.admin-image {
    flex: 1;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.admin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.admin-highlight:hover .admin-image img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .admin-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3.5rem;
    }

    .admin-highlight {
        padding: 4rem 2rem;
        border-radius: 40px;
    }

    .admin-image {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .admin-text h2 {
        font-size: 2.5rem;
    }

    .admin-text p {
        max-width: 100%;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
}

.mb-8 {
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row for most */
        gap: 0.8rem;
    }

    /* Make Apostle Andrew (first child of grid-3) full width */
    .grid-3 .team-card:first-child {
        grid-column: span 2;
    }

    .team-card .img-box {
        height: 333px;
        /* Even smaller for mobile grid */
    }

    .grid-3 .team-card:first-child .img-box {
        height: 250px;
        /* Andrew stays a bit larger */
    }

    .team-card .info {
        padding: 0.8rem;
    }

    .team-card h3 {
        font-size: 0.9rem;
    }

    .team-card span {
        font-size: 0.55rem;
        padding: 2px 8px;
    }
}


/* Special Highlight for School of Ministry Admin */

.admin-highlight-card {
    border: 2px solid var(--primary-gold) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2) !important;
}

.role-highlight {
    font-size: 0.65rem;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    padding: 3px 12px;
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-gold));
    border-radius: 20px;
    align-self: center;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* School of Ministry Section */
.school-of-ministry {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.07) 0%, transparent 70%);
}

.som-highlight-box {
    display: flex;
    gap: 3.5rem;
    padding: 3.5rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.75), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    box-shadow: var(--glass-shadow), inset 0 0 45px rgba(212, 175, 55, 0.03);
    position: relative;
    overflow: hidden;
}

/* Beautiful Accent Corner Borders for Royal Academy look */
.som-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--primary-gold);
    border-left: 3px solid var(--primary-gold);
}

.som-highlight-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--primary-gold);
    border-right: 3px solid var(--primary-gold);
}

.som-video-wrapper {
    position: relative;
    width: 50%;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.som-video-wrapper:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15), 0 15px 35px rgba(0, 0, 0, 0.8);
}

.som-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
    z-index: 2;
}

.som-video-wrapper:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

.som-video-wrapper .play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.som-video-wrapper .play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Pulsing effect when hovering the video */
.som-video-wrapper:hover .play-ring {
    width: 95px;
    height: 95px;
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
}

.som-video-wrapper:hover .play-btn {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.som-video-wrapper .live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary-red), #b22222);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--primary-gold);
    z-index: 5;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.som-info {
    flex-grow: 1;
}

.som-info .pre-title {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.som-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.som-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.curriculum-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.curr-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.curr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: background 0.3s;
}

.curr-card:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.curr-card:hover::before {
    background: var(--primary-gold);
}

.curr-number {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    width: 35px;
    flex-shrink: 0;
    text-align: center;
}

.curr-card:hover .curr-number {
    opacity: 1;
    transform: scale(1.15);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.curr-content {
    flex-grow: 1;
}

.curr-content h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.curr-card:hover .curr-content h4 {
    color: var(--primary-gold);
}

.curr-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Responsive styles for School of Ministry */
@media (max-width: 992px) {
    .som-highlight-box {
        flex-direction: column;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    .som-video-wrapper {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 576px) {
    .som-info h3 {
        font-size: 1.8rem;
    }
    .som-video-wrapper {
        height: 240px;
    }
    .som-highlight-box {
        padding: 1.5rem;
    }
    .curr-card {
        padding: 1rem;
        gap: 1rem;
    }
    .curr-number {
        font-size: 1.2rem;
        width: 25px;
    }
}