/* 
 * ==========================================
 * Global Variables & Reset
 * ==========================================
 */
:root {
    --color-bg-main: #000000;
    --color-bg-secondary: #0f1012;
    --color-bg-light: #f4efea;
    /* Cream/light background */
    --color-bg-card: #151515;
    --color-bg-card-light: #ffffff;
    --color-border: #222222;
    --color-border-light: rgba(255, 255, 255, 0.07);
    --color-border-dark: rgba(0, 0, 0, 0.1);

    --color-text-main: #ffffff;
    --color-text-muted: #a5a5a5;
    --color-text-dark: #1a1a1a;
    --color-text-dark-muted: #666666;

    --color-primary: #0319ff;
    --color-primary-hover: #0212cc;
    --color-transparent-white: rgba(255, 255, 255, 0.1);
    --color-transparent-white-hover: rgba(255, 255, 255, 0.2);
    --color-blue-gradient: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.15) 50%, #0408de 100%);

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Instrument Serif', serif;
    --font-accent: 'Outfit', sans-serif;
    --font-p: 'Satoshi', sans-serif;
    --framer-font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    --framer-font-family-bold: "Satoshi", "Satoshi Placeholder", sans-serif;
    --framer-font-family-bold-italic: "Satoshi", "Satoshi Placeholder", sans-serif;
    --framer-font-family-italic: "Satoshi", "Satoshi Placeholder", sans-serif;
    --framer-font-open-type-features: normal;
    --framer-font-size: 14px;
    --framer-font-style: normal;
    --framer-font-style-bold: normal;
    --framer-font-style-bold-italic: italic;
    --framer-font-style-italic: italic;
    --framer-font-variation-axes: normal;
    --framer-font-weight: 400;
    --framer-font-weight-bold: 700;
    --framer-font-weight-bold-italic: 700;
    --framer-font-weight-italic: 400;
    --framer-letter-spacing: -0.02em;
    --framer-line-height: 1.3em;
    --framer-paragraph-spacing: 20px;
    --framer-text-alignment: start;
    --framer-text-color: #ffffff;
    --framer-text-decoration: none;
    --framer-text-stroke-color: initial;
    --framer-text-stroke-width: initial;
    --framer-text-transform: none;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

h2 {
    font-size: 46px;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    font-family: var(--font-p);
    font-size: var(--framer-font-size);
    font-weight: var(--framer-font-weight);
    line-height: var(--framer-line-height);
    letter-spacing: var(--framer-letter-spacing);
}

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

/* Rolling Text Hover Animation */
.roll-link {
    display: inline-flex;
}

.roll-text {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    vertical-align: top;
    height: 1.1em;
}

.roll-text-inner {
    display: inline-flex;
    flex-direction: column;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.1em;
}

.roll-text-inner::after {
    content: attr(data-text);
    display: block;
    line-height: 1.1em;
}

.roll-link:hover .roll-text-inner {
    transform: translateY(-100%);
}

.roll-link:hover .roll-text-inner[data-icon-roll="true"] {
    transform: translateY(-50%);
}

.roll-text-inner[data-icon-roll="true"]::after {
    display: none;
}

.header__social-link .roll-text {
    height: 100%;
}

.header__social-link .roll-text-inner {
    height: calc(100% * 2);
    justify-content: center;
}

.header__social-link .roll-text-inner i {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container--center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 
 * ==========================================
 * Typography & Common Components
 * ==========================================
 */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-primary);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    color: #fff;
}

.badge--light {
    background-color: transparent;
    border: 1px solid var(--color-border-dark);
    color: var(--color-text-dark-muted);
}

.section-heading,
h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-text-main);
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.section-title--dark {
    color: var(--color-text-dark);
}

.section-desc {
    font-size: 16px;
    color: #000;
    text-align: center;
    max-width: 600px;
    margin-bottom: 0px;
    margin-top: -24px;
}

.section-desc--dark {
    color: var(--color-text-dark-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 27px;
    /* font-weight: 600; */
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    color: #fff;
}

.btn--secondary {
    background-color: var(--color-transparent-white);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background-color: var(--color-transparent-white-hover);
    transform: translateY(-2px);
}

/* Floating Homepage control — fixed on all pages except the home page */
.sticky-home-btn {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    box-shadow: 0 10px 28px rgba(3, 25, 255, 0.4);
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.sticky-home-btn:hover {
    background-color: var(--color-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(3, 25, 255, 0.5);
}

@media (max-width: 991px) {
    .sticky-home-btn {
        padding: 12px 22px;
        font-size: 14px;
        right: max(12px, env(safe-area-inset-right));
        bottom: max(18px, env(safe-area-inset-bottom));
    }
}

/* 
 * ==========================================
 * Header Navigation
 * ==========================================
 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 80px;
    padding: 0 clamp(16px, 4vw, 40px);
    z-index: 1000;
    background-color: #000;
    pointer-events: auto;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header__left,
.header__right {
    display: flex;
    align-items: center;
    min-height: 80px;
    background: none;
    flex: 1 1 0;
    min-width: 0;
}

.header__left {
    justify-content: flex-start;
    gap: 12px;
    padding: 0;
}

.header__right {
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
}

.header__logo {
    display: flex;
    align-items: center;
    margin-right: 0;
    flex-shrink: 0;
}

.header__logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.header__nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    z-index: 1;
    pointer-events: auto;
}

.header__link {
    padding: 10px 10px;
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    color: #ffffff;
    transition: opacity 0.3s ease;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.header__link:hover,
.header__link--active {
    opacity: 1;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .header__link {
        padding: 10px 6px;
        font-size: 13px;
    }
}

.header__socials {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 15px;
    opacity: 0.9;
}

.header__left:hover,
.header__right:hover,
.header__link:hover {
    box-shadow: none !important;
}



/* 
 * ==========================================
 * Hero Section
 * ==========================================
 */
.hero {
    width: 100%;
    min-height: 100vh; /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 0;
    background-color: #000;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh; /* smaller height on mobile */
        padding: 60px 15px;
    }
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
    font-size: 90px;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    max-width: 550px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

/* 
 * ==========================================
 * About Section
 * ==========================================
 */
.about {
    position: relative;
    z-index: 2;
    padding: 50px 0;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.about__badge-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about__small-title {
    color: #0319ff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.about__main-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 900px;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.about__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    /* Square-ish as in screenshot */
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__content-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about__section-subtitle {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0px;
}

.about__text {
    line-height: 1.6;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    left: -20px;
}

.features-list__item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.features-list__icon {
    font-size: 1.125rem;
    color: #f6137f;
    /* Matching the pink in screenshot */
    width: 24px;
    text-align: center;
}

.about__button-wrapper {
    margin-top: 24px;
}



/* 
 * ==========================================
 * Events Section
 * ==========================================
 */
.events {
    padding: 50px 0;
    background-color: #000;
}

.events .badge {
    margin: 0 auto 24px;
    display: table;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
}

.events .section-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.01em;
}

.events__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    padding: 0 115px;
}

.event-card {
    position: relative;
    border: none;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.6s ease;
    --border-bottom-width: 1px;
    --border-color: #ffffff12;
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    background-color: #575757;
}

.event-card .liner {
    background: linear-gradient(90deg, rgba(0, 85, 255, 0) 0%, rgb(0, 85, 255) 50%, rgba(0, 85, 255, 0) 100%);
    opacity: 1;
    flex: 0 0 auto;
    height: 1px;
    left: calc(50% - 85px);
    position: absolute;
    top: 0px;
    width: 170px;
    z-index: 1;
}

.event-card:hover {
    --border-bottom-width: 1px;
    --border-color: var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f, rgba(255, 255, 255, 0.07));
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    background-color: rgb(86 132 255);
}

.event-card__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.event-card__top {
    display: flex;
    flex-direction: column;
}

.event-card__title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-primary);
    margin-bottom: 3px;
}

.event-card__time {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: var(--font-primary);
    margin-bottom: 0;
}

.event-card__separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.15) 50%, #0408de 100%);
    /* Blue line from screenshot */
    margin: 8px 0;
}

.event-card__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
}



/* 
 * ==========================================
 * Sermons Section
 * ==========================================
 */
.sermons {
    padding: 50px 0;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    position: relative;
    overflow: hidden;
}

.sermons .badge {
    margin: 0 auto 24px;
    display: table;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
}

.sermons__slider-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
}

.sermons__slider-wrapper {
    flex-grow: 1;
    overflow: hidden;
    border-radius: 20px;
}

.sermons__slider {
    display: flex;
    transition: transform 0.5s ease;
    scroll-behavior: smooth;
    gap: 0;
    /* No gap between slides in this design */
}

.sermon-card {
    max-height: 450px;
    min-width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    color: #fff;
    border: none;
    border-radius: 0;
    transition: all 0.4s ease;
}

.sermon-card:hover {
    --border-bottom-width: 0px;
    --border-color: rgba(0, 0, 0, 0);
    --border-left-width: 0px;
    --border-right-width: 0px;
    --border-style: solid;
    --border-top-width: 0px;
    background-color: rgb(86, 132, 255);
    width: 100%;
    border-radius: 20px;
    opacity: 1;
    will-change: auto;
}

.sermon-card__image-container {
    width: 50%;
    padding: 24px;
}

.sermon-card__img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.sermon-card__content {
    width: 50%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.sermon-card__date {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.sermon-card__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Satoshi';
}

.sermon-card__desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.sermon-card__speaker {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
}

.sermons__arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.sermons__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sermons__arrow--prev {
    left: 40px;
    /* Positioned inside the image area */
}

.sermons__arrow--next {
    right: 40px;
    /* Positioned inside the content area */
}

.sermons__pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.sermons__dots {
    background-color: #d1d1d1;
    padding: 10px 16px;
    border-radius: 20px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.dot--active {
    opacity: 1;
    transform: scale(1.1);
}



/* 
 * ==========================================
 * Gallery Section
 * ==========================================
 */
.gallery {
    padding: 50px 0;
    background-color: var(--color-bg-main);
    overflow: hidden;
}

.gallery__ticker-wrapper {
    display: flex;
    gap: 10px;
    height: 800px;
    /* Fixed height for vertical ticker */
    width: 100vw;
    /* Take full viewport width */
    max-width: 100%;
    margin-top: 40px;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    justify-content: center;
}

.gallery__ticker {
    display: flex;
    flex-direction: column;
    width: 30vw;
    max-width: 366px;
    overflow: hidden;
}

.gallery__track {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery__track img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 366px;
}

.gallery .badge {
    border: 1px solid rgb(255 255 255 / 19%);
}

/* Animations based on Framer DOM (vertical scrolling) */
@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.gallery__ticker--down .gallery__track {
    animation: scrollDown 40s linear infinite;
}

.gallery__ticker--down2 .gallery__track {
    animation: scrollDown 50s linear infinite;
    animation-direction: normal;
}

.gallery__ticker--up .gallery__track {
    animation: scrollUp 45s linear infinite;
}

.gallery__ticker--up2 .gallery__track {
    animation: scrollUp 50s linear infinite;
}


/* 
 * ==========================================
 * FAQ Section
 * ==========================================
 */
.faq {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.faq .badge {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.faq__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
}

.faq__desc {
    font-size: 1rem;
    color: #0f0f0f;
    max-width: 380px;
    font-weight: 500;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.faq__questions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
    color: #fff;
}

.faq-item__header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 1rem;
    text-align: left;
}

.faq-item__icon {
    font-size: 1rem;
    font-weight: 300;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: rgba(255, 255, 255, 0.6);
}

.faq-item__content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item--active .faq-item__content {
    padding-bottom: 24px;
        max-height: 300px;
    text-align: left;
}

.faq-item--active .faq-item__icon {
    transform: rotate(765deg);
}



/* 
 * ==========================================
 * Footer
 * ==========================================
 */
.footer {
    padding: 100px 0 50px;
    background-color: #000;
    background-image:
        radial-gradient(circle at 0% 100%, rgba(0, 35, 130, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 35, 130, 0.5) 0%, transparent 40%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: flex;
    gap: 40px;
    margin-bottom: 15px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center logo and desc */
    text-align: center;
    gap: 25px;
}

.footer__grid .d-flex {
    gap: 50px;
}

.footer__logo img {
    max-height: 218px;
    width: auto;
}

.footer .seperator {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    flex: 0 0 auto;
    height: 1px;
    position: relative;
    width: 230px;
}

.footer__desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 320px;
    font-weight: 500;
    font-family: 'Satoshi';
    font-size: 20px;
}

.footer__title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    font-family: var(--font-primary);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    left: -30px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #fff;
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    /* Center copyright */
    align-items: center;
}

.footer__copyright {
    font-size: 16px;
    font-family: 'Satoshi';
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}


/* 
 * ==========================================
 * Responsive Styles (Senior Developer Consolidation)
 * ==========================================
 */
.header__menu-toggle {
    display: none;
}

/* Home page hero */


.home-page .hero__overlay {
    background: radial-gradient(75% 64% at 50% 50%, rgba(255, 255, 255, 0) 17.5676%, rgb(4, 7, 13) 100%);
}

.home-page .about__button-wrapper {
    margin-top: 0px;
}

.home-page .features-list {
    margin-bottom: 10px;
}

@media (max-width: 991px) {

    /* Header Responsive */
    .header {
        min-height: 58px;
        padding: 0 16px;
        gap: 12px;
    }

    .header__left,
    .header__right {
        flex: 0 0 auto;
        min-height: 58px;
    }

    .header__logo {
        margin-right: 0;
        margin-bottom: 0;
    }

    .header__logo img {
        height: 80px;
    }

    .header__nav,
    .header__socials {
        display: none;
    }

    .header__menu-toggle {
        display: block;
        background: transparent;
        border: none;
        color: #fff;
        font-weight: 600;
        font-size: 13px;
        font-family: var(--font-primary);
        letter-spacing: 0.5px;
        padding: 8px 4px;
    }

    /* Hero Responsive */
    .hero {
        height: 85vh;
        min-height: auto;
        padding: 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
    }

    .hero__title {
        font-size: 40px;
        margin-bottom: 24px;
        font-family: var(--font-heading);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        font-weight: 400;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 290px;
        margin: 0 auto 48px;
        line-height: 1.5;
        opacity: 0.95;
        font-weight: 500;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 280px;
        margin-top: 0;
    }

    .hero__buttons .btn {
        width: 100%;
        padding: 18px;
        border-radius: 30px;
        font-size: 15px;
    }

    .btn--secondary {
        background-color: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* .home-page .about {
        margin-top: 166vh !important;
    } */

    .home-page .hero {
        justify-content: end;
        align-items: center;
        text-align: center;
        padding-bottom: 150px;
    }

    .home-page .hero__title {
        font-size: 58px;
    }

    .home-page .hero__subtitle {
        font-size: 22px;
        max-width: 526px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about__main-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 40px;
    }

    .about__small-title {
        text-align: center;
    }

    .about__grid {
        gap: 30px;
    }

    .about__img {
        aspect-ratio: 16 / 31 !important;
    }

    .about__section-subtitle {
        font-size: 32px;
    }

    .about__text {
        font-size: 16px;
    }

    .features-list {
        left: 0;
        align-items: left;
        width: fit-content;
        margin: auto;
        padding-left: 0;
        margin-left: 0;
    }

    .about__button-wrapper {
        display: flex;
        justify-content: left;
    }

    /* Events */
    .events__list {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }

    .events .section-title {
        font-size: 36px;
    }

    /* Sermons */
    .sermon-card {
        flex-direction: column;
        max-height: none;
        border-radius: 20px;
    }

    .sermon-card__image-container,
    .sermon-card__content {
        width: 100%;
    }

    .sermon-card__image-container {
        padding: 15px;
        height: 480px;
    }

    .sermon-card__content {
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }

    .sermons__arrow {
        display: none;
    }

    /* Gallery */
    .gallery__ticker-wrapper {
        flex-direction: column;
        height: auto;
        padding: 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        margin-top: 20px;
        gap: 15px;
        overflow: hidden;
    }

    .gallery__ticker {
        width: 100vw;
        height: auto;
        max-width: none;
        overflow: hidden;
    }

    .gallery__track {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: flex-start;
        width: max-content;
    }

    .gallery__track img {
        width: 220px;
        height: 150px;
        aspect-ratio: auto;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes scrollRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    .gallery__ticker--down .gallery__track {
        animation: scrollLeft 25s linear infinite;
    }

    .gallery__ticker--down2 .gallery__track {
        animation: scrollLeft 30s linear infinite;
    }

    .gallery__ticker--up .gallery__track {
        animation: scrollRight 28s linear infinite;
    }

    .gallery__ticker--up2 .gallery__track {
        animation: scrollRight 32s linear infinite;
    }

    /* FAQ */
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .faq__desc {
        max-width: none;
        margin: 0 auto 24px;
    }

    .faq-item__header {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer__grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .footer__grid .d-flex {
        flex-direction: row;
    }

    .footer__brand {
        width: 100%;
    }

    .footer__desc {
        max-width: 80%;
        font-size: 18px;
    }

    .footer__links {
        left: 0;
        align-items: flex-start;
    }

    .footer__title {
        text-align: left;
        padding-left: 30px;
    }

    .footer__nav-col {
        width: 20%;
    }

    .d-flex {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .footer__grid .d-flex {
        flex-direction: row;
    }
}

/* 
 * ==========================================
 * Mobile Menu Overlay
 * ==========================================
 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 900;
    /* Below fixed header bar; full-screen overlay when open */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu--open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 44px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-menu__link:hover {
    opacity: 0.7;
}

.mobile-menu__socials {
    display: flex;
    gap: 40px;
}

.mobile-menu__socials a {
    color: #fff;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.mobile-menu__socials a:hover {
    opacity: 0.7;
}

/* Prevent background scrolling */
body.menu-open {
    overflow: hidden;
}

/* Global Fix: Add high z-index to all other sections so they overlay the fixed parallax banners */
main>section:not(.hero):not(.give-hero):not(.contact-hero):not(.hero-about):not(.sermons-hero):not(.ministries-hero),
main>div:not(.hero):not(.give-hero):not(.contact-hero):not(.hero-about):not(.sermons-hero):not(.ministries-hero),
.footer {
    position: relative;
    z-index: 10;
}

/* Global Responsive Margin Top for the first sections after fixed banners */
@media (max-width: 991px) {

    .give-section,
    .contact-section,
    .who-we-are,
    .sermons-media,
    .ministries-content,
    .about {
        margin-top: 285px !important;
    }

    .sermons-hero,
    .ministries-hero,
    .hero-about {
        min-height: 380px !important;
    }

    .sermons-hero__title {
        font-size: 58px !important;
    }

    .sermons-media .section-title {
        font-size: 35px !important;
    }

    .sermons-media .section-desc {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 35px !important;
    }

    .section-desc {
        font-size: 16px !important;
    }

    .ministries-content.mt-0 {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {

    .give-section,
    .contact-section,
    .who-we-are,
    .sermons-media,
    .ministries-content,
    .about {
        margin-top: 300px !important;
    }

    .home-page .hero {
        padding-bottom: 80px;
    }
    .about__grid {
        display: flex;
        flex-direction: column;
    }
    .about__img {
        aspect-ratio: 16 / 18 !important;
    }
    .faq {
        padding: 70px 0;
    }


}
/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .about__img {
        aspect-ratio: 1 / 1.6; /* slightly shorter */
    }
}
.paypal-logo img {
    width: 270px;
    margin-top: 30px;
}


.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    width:100%;
}

.form-label,
.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-control,
.form-select{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

textarea.form-control{
    min-height:140px;
    resize:vertical;
}

.contact-submit-btn{
    background:#000;
    color:#fff;
    padding:14px 30px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.contact-submit-btn:hover{
    opacity:0.9;
}

@media(max-width:768px){
    .form-row{
        flex-direction:column;
        gap:15px;
    }
}