:root {
    --primary-maroon: #800020;
    --primary-purple: #4a1580;
    --accent-gold: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-purple) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1002;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-purple) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1001;
}

.main-nav.open {
    transform: translateX(0);
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.main-nav.open .menu-close {
    display: flex;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-list li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.main-nav.open .nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.main-nav.open .nav-list li:nth-child(1) { transition-delay: 0.1s; }
.main-nav.open .nav-list li:nth-child(2) { transition-delay: 0.2s; }
.main-nav.open .nav-list li:nth-child(3) { transition-delay: 0.3s; }
.main-nav.open .nav-list li:nth-child(4) { transition-delay: 0.4s; }
.main-nav.open .nav-list li:nth-child(5) { transition-delay: 0.5s; }
.main-nav.open .nav-list li:nth-child(6) { transition-delay: 0.6s; }

.nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    min-height: 44px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background: var(--accent-gold);
    transition: transform 0.3s ease;
}

.nav-list a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

@media (min-width: 768px) {
    .menu-toggle,
    .menu-close {
        display: none;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        transform: none;
        opacity: 1;
        flex-direction: row;
        justify-content: flex-end;
    }

    .nav-list {
        display: flex;
        gap: 0.5rem;
    }

    .nav-list li {
        opacity: 1;
        transform: none;
    }

    .nav-list a {
        display: flex;
        align-items: center;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        min-height: 44px;
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-list a:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 1024px) {
    .logo-img {
        width: 70px;
        height: 70px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
    }
}

body.menu-open {
    overflow: hidden;
}

.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(128, 0, 32, 0.85) 0%, rgba(74, 21, 128, 0.85) 100%);
    background-size: cover;
    background-position: center;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--header-height) 20px 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    color: var(--primary-purple);
    position: relative;
    padding-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-maroon), var(--accent-gold), var(--primary-purple));
    border-radius: 2px;
}

.services-times {
    background: var(--bg-gray);
    padding: 100px 20px;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.time-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-maroon), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.time-card:hover::before {
    transform: scaleX(1);
}

.time-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.time-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
}

.time-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.gallery-section {
    animation: fadeInUp 0.8s ease-out;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.slideshow-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-slide {
    min-width: 100%;
    height: 100%;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev { left: 20px; }
.slideshow-next { right: 20px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.gallery-item {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.lightbox[aria-hidden="false"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease-out;
    display: block;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: white;
    color: var(--text-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--primary-purple);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.about-text h3 {
    color: var(--primary-purple);
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.core-value-item {
    background: linear-gradient(135deg, #f0e6ff 0%, #ffe6f0 100%);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--primary-purple);
    font-weight: 600;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.core-value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.15);
}

.vision-mission {
    background: var(--bg-gray);
}

.vision-box,
.mission-box,
.strategies-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.vision-box::before,
.mission-box::before,
.strategies-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-maroon), var(--accent-gold), var(--primary-purple));
}

.vision-box:hover,
.mission-box:hover,
.strategies-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.vision-box h3,
.mission-box h3,
.strategies-box h3 {
    color: var(--primary-purple);
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
}

.vision-box p,
.mission-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.swahili {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

.strategies-list {
    list-style: none;
    padding: 0;
}

.strategies-list li {
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f0e6ff 0%, #ffe6f0 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-maroon);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.strategies-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.strategies-list strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
}

.ministry-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05), rgba(74, 21, 128, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ministry-card:hover::before {
    opacity: 1;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.ministry-card h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.ministry-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.events-section {
    background: linear-gradient(180deg, #fbf7ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 80px 20px;
    animation: fadeInUp 0.8s ease-out;
}

.events-layout {
    max-width: 900px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-purple);
    animation: fadeInUp 0.8s ease-out;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.event-date {
    font-weight: 700;
    color: var(--primary-purple);
    background: linear-gradient(90deg, rgba(128, 0, 32, 0.08), rgba(74, 21, 128, 0.06));
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.event-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.sermons-section {
    background: var(--bg-gray);
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.sermon-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sermon-info {
    padding: 1.5rem;
}

.sermon-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sermon-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.live-now-container {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-radius: 20px;
    border: 2px solid #ff4444;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.live-badge {
    display: inline-block;
    background: #ff0000;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.live-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-section {
    background: var(--bg-gray);
    padding: 100px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    animation: fadeInUp 0.8s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-section,
.contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.whatsapp-section:hover,
.contact-info-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-section h3,
.contact-info-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.whatsapp-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.qr-code {
    width: 220px;
    height: 220px;
    margin: 2rem auto;
    display: block;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-top: 0.3rem;
}

.contact-item strong {
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item span {
    color: var(--text-light);
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.payment-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.payment-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-about-toggle {
    margin-top: 1rem;
    cursor: pointer;
}

.footer-about-toggle summary {
    color: var(--accent-gold);
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.footer-about-toggle summary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-about {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.footer-about h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .about-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .section-title {
        font-size: 2rem;
    }

    .times-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-slideshow {
        height: 300px;
    }

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