@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #6A1B4D;
    --primary-dark: #4D1237;
    --primary-light: #8E2D6A;
    --accent: #D4AF37;
    --accent-dark: #B5942D;
    --teal: #00C9B1;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #F9F7F5;
    --text-muted: #A0A0A0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .h-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Navigation Topbar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(18, 18, 18, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.topbar.scrolled {
    padding: 1rem 0;
    background: rgba(18, 18, 18, 0.9);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Adjustments for Navigation */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: 0.4s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 90px 0;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.3);
    z-index: 2;
    pointer-events: none;
}

/* Hero Background Carousel Styles */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.08);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.3rem, 5.5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.95rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
    background-color: #E5C35D;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.btn-dark-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-dark-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent) !important;
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Hero Section Countdown Timer */
.hero-countdown {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3.5rem;
    z-index: 2;
    position: relative;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    width: 95px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.countdown-value {
    font-size: 2.3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Utilities */
.reveal, .reveal-swipe {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active, .reveal-swipe.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Specific Page Section Fixes */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.vision-images {
    position: relative;
    height: 550px;
}

@media (max-width: 991px) {
    .container { padding: 0 1.5rem; }
    .hero { min-height: auto; padding: 120px 0 60px 0; }
    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 1rem; margin-bottom: 2rem; }
    .cta-group { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .cta-group .btn { flex: 1 1 auto; max-width: 280px; }
    
    .hero-countdown { gap: 1rem; margin-top: 3rem; }
    .countdown-item { width: 85px; height: 105px; border-radius: 16px; }
    .countdown-value { font-size: 2rem; }
    
    .vision-grid { grid-template-columns: 1fr; gap: 3rem; }
    .magazine-grid { gap: 2.5rem; }
    .vision-images { height: 420px; }
    .mandate-card { padding: 1.5rem !important; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; margin-bottom: 1.25rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 2rem; }
    
    .hero-countdown { gap: 0.5rem; margin-top: 2.5rem; }
    .countdown-item { width: 68px; height: 85px; border-radius: 12px; }
    .countdown-value { font-size: 1.6rem; margin-bottom: 0.2rem; }
    .countdown-label { font-size: 0.55rem; letter-spacing: 1px; }
    
    .vision-images { height: 320px; }
    .programme-item { flex-direction: column; text-align: center; gap: 1rem; }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navigation Scroll-Spy & Active State */
.nav-menu a.active {
    color: var(--accent) !important;
    font-weight: 700;
}

/* Premium Card Upgrades (Milestones, Magazine, Giving) */
.hover-card, .programme-item, .giving-card {
    transition: var(--transition);
}
.hover-card:hover, .giving-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(106, 27, 77, 0.15) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
}

/* Clean Sequential Programme Cards (Matches Screenshot) */
.programme-list {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.programme-card {
    background: #ffffff;
    border: 1px solid rgba(106, 27, 77, 0.05);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: var(--transition);
}

.programme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(106, 27, 77, 0.04);
    border-color: rgba(106, 27, 77, 0.1);
}

.programme-card-date {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.date-month-day {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.2;
}

.color-maroon {
    color: var(--primary);
}

.color-gold {
    color: var(--accent);
}

.date-weekday {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

.programme-card-content {
    flex: 1;
}

.programme-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.programme-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .programme-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 2rem;
    }
    
    .programme-card-date {
        min-width: auto;
    }
}


/* Interactive FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.accordion-item {
    background: #fdfaf7;
    border: 1px solid rgba(106, 27, 77, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item:hover {
    border-color: rgba(106, 27, 77, 0.15);
    box-shadow: 0 10px 25px rgba(106, 27, 77, 0.03);
}
.accordion-header {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.accordion-header h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform 0.3s ease;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.75rem;
}
.accordion-body-content {
    padding-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}
.accordion-item.active {
    background: #fff;
    border-color: rgba(106, 27, 77, 0.1);
    box-shadow: 0 15px 30px rgba(106, 27, 77, 0.05);
}
.accordion-item.active .accordion-body {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Dark Premium Footer */
.footer-dark {
    background: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px 0;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    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;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Share Banner Section */
.share-banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3a0d29 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.share-banner-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.share-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.share-banner-text {
    flex: 1.2;
    min-width: 300px;
}

.share-banner-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.share-banner-label svg {
    animation: pulse 2s infinite;
}

.share-banner-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: linear-gradient(180deg, #FFF 60%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.share-banner-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 620px;
}

.share-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    min-width: 300px;
}

/* Capsule buttons styling */
.share-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.share-capsule svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition);
}

.share-capsule:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.share-capsule:hover svg {
    transform: scale(1.15);
}

.share-whatsapp {
    background-color: #25D366;
    color: white;
}

.share-whatsapp:hover {
    background-color: #20ba59;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.share-facebook {
    background-color: #1877F2;
    color: white;
}

.share-facebook:hover {
    background-color: #166fe5;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.share-x {
    background-color: #000000;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}

.share-x:hover {
    background-color: #141414;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255,255,255,0.3);
}

.share-flyer {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    box-shadow: none;
}

.share-flyer:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1200px) {
    .share-banner-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .share-banner-actions {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .share-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-capsule {
        justify-content: center;
    }
}

/* Photo Gallery & Milestones Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #300a21 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.carousel-outer-wrapper {
    position: relative;
    margin-top: 4rem;
    display: flex;
    align-items: center;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0.5rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 520px;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.08);
}

.gallery-card-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #1a0614;
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover .gallery-card-img {
    transform: scale(1.08);
}

.gallery-special-box {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(106, 27, 77, 0.3) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.special-box-bg-light {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.special-year-huge {
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, var(--accent) 30%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.special-label {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.special-span-dates {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.8;
    margin-top: 0.25rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
}

.gallery-card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.gallery-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.gallery-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}

/* Nav Arrows */
.carousel-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    user-select: none;
}

.carousel-btn:hover {
    background: var(--accent);
    color: black;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

@media (max-width: 1200px) {
    .gallery-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .carousel-btn.prev {
        left: -12px;
    }
    
    .carousel-btn.next {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .gallery-card {
        flex: 0 0 100%;
        height: auto;
    }
    
    .gallery-card-img-box, .gallery-special-box {
        height: 240px;
    }
    
    .carousel-btn {
        display: none; /* Hide arrows on touch screens, support overflow scrolling */
    }
    
    .carousel-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
    
    .gallery-card {
        scroll-snap-align: start;
    }
}

/* Dedicated Gallery & Lightbox Styles */
.gallery-page-hero {
    padding: 140px 0 60px 0;
    background: linear-gradient(180deg, #1f0413 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: black;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid-section {
    padding: 20px 0 100px 0;
    background: var(--primary-dark);
    min-height: 500px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-grid-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    height: 380px;
    position: relative;
}

.gallery-grid-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.08);
}

.gallery-grid-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #12030d;
}

.gallery-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid-card:hover .gallery-grid-img {
    transform: scale(1.06);
}

.gallery-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(18, 3, 13, 0.95) 0%, rgba(18, 3, 13, 0.4) 60%, transparent 100%);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid-card:hover .gallery-grid-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-grid-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.gallery-grid-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 2, 7, 0.96);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: #ff4a5a;
    border-color: #ff4a5a;
    color: white;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    user-select: none;
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.lightbox-nav.prev {
    left: 40px;
}

.lightbox-nav.next {
    right: 40px;
}

.lightbox-caption-panel {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: white;
    z-index: 10000;
}

.lightbox-counter {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.lightbox-title {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 992px) {
    .lightbox-nav.prev {
        left: 20px;
    }
    
    .lightbox-nav.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT & INQUIRIES SECTION — Premium Light Theme
   ═══════════════════════════════════════════════════════════════ */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(106, 27, 77, 0.05);
    box-shadow: 0 10px 30px rgba(106, 27, 77, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(106, 27, 77, 0.08);
    border-color: rgba(106, 27, 77, 0.12);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon-box {
    transform: scale(1.1);
}

.contact-icon-box.email-icon {
    background: rgba(106, 27, 77, 0.06);
    color: var(--primary);
}
.contact-icon-box.whatsapp-icon {
    background: rgba(46, 125, 50, 0.06);
    color: #2e7d32;
}
.contact-icon-box.call-icon {
    background: rgba(212, 175, 55, 0.08);
    color: #A77B19;
}
.contact-icon-box.share-icon {
    background: rgba(106, 27, 77, 0.06);
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 0.5rem 0;
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(45, 10, 31, 0.6);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
    max-width: 240px;
}

.contact-link {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link.email-val {
    color: var(--primary);
}
.contact-link.email-val:hover {
    color: var(--primary-dark);
    text-shadow: 0 0 1px rgba(106, 27, 77, 0.1);
}

.contact-link.whatsapp-val {
    color: #2e7d32;
}
.contact-link.whatsapp-val:hover {
    color: #1b5e20;
    text-shadow: 0 0 1px rgba(46, 125, 50, 0.1);
}

.contact-link.call-val {
    color: #A77B19;
}
.contact-link.call-val:hover {
    color: #8c620e;
    text-shadow: 0 0 1px rgba(167, 123, 25, 0.1);
}

.contact-link.share-val {
    color: var(--primary);
}
.contact-link.share-val:hover {
    color: var(--primary-dark);
    text-shadow: 0 0 1px rgba(106, 27, 77, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   VENUE MAP SECTION
   ═══════════════════════════════════════════════════════════════ */

#location {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    background: #121212;
}

.map-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    #location {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .map-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 2.5rem 1.5rem;
    }
    
    #location iframe {
        height: 350px;
    }
}

/* ── Responsive breakpoints ── */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   GIVING & PARTNERSHIP SECTION — Premium Light Theme
   ═══════════════════════════════════════════════════════════════ */

#giving {
    padding: 100px 0;
    background: #fdfaf7;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(106, 27, 77, 0.04);
}

.giving-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column: Bank Accounts Stack */
.giving-accounts-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bank-account-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(106, 27, 77, 0.04);
    box-shadow: 0 8px 25px rgba(106, 27, 77, 0.015);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.bank-account-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(106, 27, 77, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.account-card-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.currency-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.currency-badge.naira {
    background: rgba(106, 27, 77, 0.07);
    color: var(--primary);
}

.currency-badge.dollar {
    background: rgba(212, 175, 55, 0.08);
    color: #A77B19;
}

.currency-badge.euro {
    background: rgba(106, 27, 77, 0.07);
    color: var(--primary);
}

.currency-badge.pounds {
    background: rgba(212, 175, 55, 0.08);
    color: #A77B19;
}

.account-card-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(45, 10, 31, 0.5);
    letter-spacing: 1px;
    margin: 0 0 0.15rem 0;
}

.account-number {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: monospace, Courier, monospace;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.copy-btn {
    background: #fcf9f6;
    border: 1px solid rgba(106, 27, 77, 0.08);
    padding: 0.6rem 1.1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(106, 27, 77, 0.15);
}

/* Account Meta Block */
.bank-meta-block {
    background: rgba(212, 175, 55, 0.03);
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    padding: 1.25rem 1.75rem;
    margin-top: 1.5rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    line-height: 1.6;
}

.meta-row:not(:last-child) {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 0.5rem;
}

.meta-label {
    color: rgba(45, 10, 31, 0.6);
    font-weight: 600;
}

.meta-value {
    color: var(--primary-dark);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* Right Column: Checkout Info */
.giving-checkout-panel {
    background: #ffffff;
    border: 1px solid rgba(106, 27, 77, 0.04);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(106, 27, 77, 0.02);
}

.giving-checkout-panel h3 {
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.giving-checkout-panel p {
    font-size: 0.95rem;
    color: rgba(45, 10, 31, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-giving-checkout {
    background: var(--accent);
    color: #000 !important;
    width: 100%;
    text-align: center;
    padding: 1.1rem;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-giving-checkout:hover {
    background: #e5c35d;
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(212, 175, 55, 0.3);
}

.secure-badge-row {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #2e7d32;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(46, 125, 50, 0.04);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(46, 125, 50, 0.08);
}

@media (max-width: 992px) {
    .giving-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

