/* ===== CSS RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES ===== */
:root {
    --white: #FFFFFF;
    --black: #1A0F0F;
    --burgundy: #722F37;
    --dark-burgundy: #5A2328;
    --cream: #F5F1E6;
    --gold: #C8A97E;
    --gradient-primary: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    --gradient-dark: linear-gradient(135deg, #2A1A1A 0%, var(--black) 100%);
    
    --z-negative: -1;
    --z-elevated: 10;
    --z-sticky: 200;
    --z-modal: 300;
}

/* ===== BASE TYPOGRAPHY & BODY STYLES ===== */
html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--black);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--cream);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ===== LAYOUT & CONTAINER STYLES ===== */
.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.navbar-nav .nav-link:focus-visible,
.btn:focus-visible,
.social-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: transparent;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    transition: transform 0.3s ease-in-out, background 0.3s ease;
    width: 100%;
    z-index: var(--z-sticky);
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-scrolled {
    background: rgba(26, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    height: 60px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--cream);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--gold);
}

.navbar-nav .nav-item {
    margin: 0 0.2rem;
}

.navbar-nav .nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    background: rgba(114, 47, 55, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(200, 169, 126, 0.1);
}

.nav-btn-donar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--cream) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.nav-btn-donar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4);
}

/* ===== HAMBURGER MENU STYLES ===== */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: calc(var(--z-modal) + 1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.toggler-bar {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: rgba(245, 241, 230, 0.9);
    border-radius: 1px;
    left: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggler-bar-top { top: 0; }
.toggler-bar-middle { top: 8px; }
.toggler-bar-bottom { top: 16px; }

.navbar-toggler[aria-expanded="true"] .toggler-bar-top {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-middle {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-bottom {
    transform: rotate(-45deg);
    top: 8px;
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
    position: relative;
    z-index: var(--z-elevated);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 15, 15, 0.7), rgba(26, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1519074069444-1ba4fff66d16?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--cream);
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--cream);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 47, 55, 0.3);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 169, 126, 0.3);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

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

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 5rem 0;
}

.bg-dark {
    background: var(--gradient-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

/* ===== QUICK INFO SECTION ===== */
.quick-info-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
}

.info-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--cream);
    margin-bottom: 0.5rem;
}

/* ===== EXPECT LIST ===== */
.expect-list {
    margin-top: 1rem;
}

.expect-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.expect-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 0.2rem;
}

.expect-item h4 {
    color: var(--cream);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

/* ===== WELCOME QUOTE ===== */
.welcome-quote {
    background: rgba(200, 169, 126, 0.1);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.welcome-quote i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.welcome-quote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* ===== SIMPLE MINISTRY ===== */
.simple-ministry {
    text-align: center;
    padding: 1.5rem;
    background: rgba(245, 241, 230, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.simple-ministry:hover {
    transform: translateY(-3px);
    background: rgba(200, 169, 126, 0.1);
}

.simple-ministry i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

/* ===== SERMON IMAGE PLACEHOLDER ===== */
.sermon-image-placeholder {
    background: rgba(200, 169, 126, 0.1);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(200, 169, 126, 0.3);
}

.sermon-image-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ===== EVENT LIST ITEMS ===== */
.event-list-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

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

.event-date-simple {
    background: var(--gradient-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    min-width: 70px;
}

.event-info h4 {
    color: var(--cream);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

/* ===== BOOTSTRAP CAROUSEL STYLES ===== */
#bootstrapCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

#bootstrapCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

#bootstrapCarousel .carousel-indicators button.active {
    background-color: var(--gold);
}

#bootstrapCarousel .carousel-control-prev,
#bootstrapCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

#bootstrapCarousel .carousel-control-prev:hover,
#bootstrapCarousel .carousel-control-next:hover {
    background: var(--burgundy);
}

#bootstrapCarousel .carousel-caption {
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    padding: 1rem;
    bottom: 80px;
}

/* ===== FOOTER STYLES ===== */
.footer-main {
    background: var(--gradient-dark);
    color: var(--cream);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.footer-section h5 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--cream) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold) !important;
    padding-left: 5px;
}

.footer-contact li,
.footer-service-times li {
    color: var(--cream);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.footer-service-times strong {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 241, 230, 0.1);
    border-radius: 50%;
    color: var(--cream) !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 241, 230, 0.2);
}

.social-links a:hover {
    background: var(--burgundy);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(245, 241, 230, 0.2);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--cream) !important;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold) !important;
}

.admin-dot {
    background: transparent;
    border: none;
    opacity: 0.15;
    cursor: default;
    font-size: 1rem;
    margin-left: 3px;
    padding: 2px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .navbar-toggler {
        border: 1px solid rgba(245, 241, 230, 0.2);
    }
    
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(26, 15, 15, 0.98) !important;
        backdrop-filter: blur(20px);
        padding: 80px 2rem 2rem !important;
        overflow-y: auto !important;
        z-index: var(--z-modal) !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-20px);
    }

    .navbar-collapse.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-nav .nav-link {
        padding: 1.2rem 1.5rem !important;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 12px;
        background: rgba(245, 241, 230, 0.05);
    }
    
    .nav-btn-donar {
        text-align: center;
        margin: 2rem 0 1rem;
        display: block;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .navbar-collapse.show .nav-btn-donar {
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date-simple {
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .footer-main {
        text-align: center;
    }
    
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .expect-item {
        flex-direction: column;
        text-align: center;
    }
    
    .expect-item i {
        margin: 0 auto;
    }
    
    .welcome-quote p {
        font-size: 1.1rem;
    }
    
    .simple-ministry {
        padding: 1rem;
    }
    
    .simple-ministry i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
    }
    
    .navbar-nav .nav-item {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .nav-btn-donar {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== UTILITY STYLES ===== */
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.section-padding, .quick-info-section, .gallery-carousel-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-padding.revealed, .quick-info-section.revealed, .gallery-carousel-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.revealed .info-card,
.revealed .expect-item,
.revealed .simple-ministry,
.revealed .event-list-item,
.revealed .sermon-image-placeholder {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.revealed .info-card:nth-child(1) { animation-delay: 0.1s; }
.revealed .info-card:nth-child(2) { animation-delay: 0.2s; }
.revealed .info-card:nth-child(3) { animation-delay: 0.3s; }

.revealed .expect-item:nth-child(1) { animation-delay: 0.1s; }
.revealed .expect-item:nth-child(2) { animation-delay: 0.2s; }
.revealed .expect-item:nth-child(3) { animation-delay: 0.3s; }

.revealed .simple-ministry:nth-child(1) { animation-delay: 0s; }
.revealed .simple-ministry:nth-child(2) { animation-delay: 0.05s; }
.revealed .simple-ministry:nth-child(3) { animation-delay: 0.1s; }
.revealed .simple-ministry:nth-child(4) { animation-delay: 0.15s; }
.revealed .simple-ministry:nth-child(5) { animation-delay: 0.2s; }
.revealed .simple-ministry:nth-child(6) { animation-delay: 0.25s; }

.revealed .event-list-item:nth-child(1) { animation-delay: 0.1s; }
.revealed .event-list-item:nth-child(2) { animation-delay: 0.2s; }
.revealed .event-list-item:nth-child(3) { animation-delay: 0.3s; }

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

/* ===== ENHANCED CARD HOVER EFFECTS ===== */
.info-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.info-card i {
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

/* Expect Items with hover effect */
.expect-item {
    transition: transform 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
}

.expect-item:hover {
    transform: translateX(10px);
}

.expect-item i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.expect-item:hover i {
    transform: scale(1.1);
    color: var(--gold);
}

/* Simple Ministry Cards */
.simple-ministry {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.simple-ministry::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.simple-ministry:hover::after {
    width: 50px;
}

.simple-ministry:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(200, 169, 126, 0.15);
}

.simple-ministry i {
    transition: transform 0.3s ease;
}

.simple-ministry:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Event List Items */
.event-list-item {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-list-item:hover {
    transform: translateX(10px);
    background: rgba(200, 169, 126, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
}

.event-date-simple {
    transition: transform 0.3s ease, background 0.3s ease;
}

.event-list-item:hover .event-date-simple {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
}

/* Sermon Section */
.sermon-image-placeholder {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sermon-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.sermon-image-placeholder i {
    transition: transform 0.3s ease;
}

.sermon-image-placeholder:hover i {
    transform: scale(1.1);
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Welcome Quote with subtle animation */
.welcome-quote {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.welcome-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(200, 169, 126, 0.15);
}

.welcome-quote i {
    transition: transform 0.3s ease;
}

.welcome-quote:hover i {
    transform: scale(1.1);
    opacity: 0.5;
}

/* Section title underline animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-title:hover::after {
    width: 100px;
}

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

.text-center .section-title:hover::after {
    width: 80px;
}

/* Button hover enhancements */
.btn-primary, .btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before, .btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary, .btn-outline {
    z-index: 1;
}

/* Gallery carousel enhancement */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev, .carousel-control-next {
    transition: all 0.3s ease;
    opacity: 0;
}

#bootstrapCarousel:hover .carousel-control-prev,
#bootstrapCarousel:hover .carousel-control-next {
    opacity: 1;
}

/* Parallax effect for hero (optional subtle effect) */
.hero-section {
    background-attachment: fixed;
}

/* Glass morphism effect for cards on hover */
.info-card, .simple-ministry, .event-list-item, .welcome-quote {
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease;
}

.info-card:hover, .simple-ministry:hover, .event-list-item:hover, .welcome-quote:hover {
    backdrop-filter: blur(2px);
}

/* Scroll indicator pulse animation enhancement */
.scroll-indicator {
    animation: bounce 2s infinite, glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(200, 169, 126, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(200, 169, 126, 0.6);
    }
}

/* Loading animation for carousel */
.spinner-border {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Body scroll lock - FIXED */
.body-no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
