:root {
    --navy-blue: #001f3f; 
    --gold: #D4AF37;      
    --white: #FFFFFF;
}

.bg-navy {
    background-color: var(--navy-blue) !important;
    border-bottom: 3px solid var(--gold); 
}


.text-gold {
    color: var(--gold) !important;
    font-weight: bold;
}

.btn-gold {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-blue) !important;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b8962e !important; 
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

#index-hero-section {
    position: relative;
    min-height: 80vh; 
    background: url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?q=80&w=2073&auto=format&fit=crop') no-repeat center center/cover;
    overflow: hidden;
}

#index-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(0, 31, 63, 0.9) 0%,   
            rgba(0, 31, 63, 0.6) 100%
    );
    z-index: 1;
}

#index-hero-section .container {
    position: relative;
    z-index: 2;
}

#pastor-hero-section {
    position: relative;
    min-height: 80vh; 
    background: url('./assets/pastor_fidele_07.webp') no-repeat center top/cover;
    overflow: hidden;
}

#pastor-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(0, 31, 63, 0.9) 0%,   
            rgba(0, 31, 63, 0.6) 100%
    );
    z-index: 1;
}

#pastor-hero-section .container {
    position: relative;
    z-index: 2;
}



.text-gold-glow {
    color: var(--gold) !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

#index-hero-section .container {
    animation: fadeInUp 1.2s ease-out;
}

.text-navy { color: var(--navy-blue); font-weight: 700; }

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    background: var(--white);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.15) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 31, 63, 0.05);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

.schedule-hour {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin: 10px 0;
}

.divider-gold {
    width: 40px;
    height: 3px;
    background-color: var(--gold);
    opacity: 1;
    border: none;
}

.highlight-card {
    border: 2px solid var(--gold) !important;
}

.service-card {
    -webkit-appearance: none;
}

.nav-pills .nav-link {
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--gold) !important;
    color: var(--navy-blue) !important;
    font-weight: bold;
}

.prayer-slot-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prayer-slot-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    border-color: var(--gold);
}

.day-background {
    padding: 40px;
    border-radius: 20px;
    background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent);
}

.tab-pane.fade {
    transition: opacity 0.5s linear, transform 0.5s ease-out;
    transform: translateY(10px);
}
.tab-pane.fade.show {
    transform: translateY(0);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pastor-fidele-social-media {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)),
    url('https://images.unsplash.com/photo-1544427928-c49cdfebf139?q=80&w=2000&auto=format&fit=crop');
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;
}

.shuttle-invitation-section {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)),
    url('https://images.unsplash.com/photo-1544427928-c49cdfebf139?q=80&w=2000&auto=format&fit=crop');
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.bg-gold { background-color: var(--gold) !important; }
.text-navy { color: var(--navy-blue) !important; }
.text-gold { color: var(--gold) !important; }

.meeting-point-box {
    background: rgba(0, 31, 63, 0.5);
    border: 1px dashed var(--gold);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b8962e;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}


@media (max-width: 991px) {
    .shuttle-invitation-section {
        background-attachment: scroll; 
    }
}


:root {
    --navy-blue: #001f3f;
    --gold: #D4AF37;
}


.shuttle-invitation-section {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)),
    url('https://images.unsplash.com/photo-1544427928-c49cdfebf139?q=80&w=2000&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: 0.3s ease;
}

.info-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.meeting-point-box {
    background: rgba(0, 31, 63, 0.5);
    border: 1px dashed var(--gold);
}


.bg-navy { background-color: var(--navy-blue) !important; border-top: 3px solid var(--gold); }
.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.text-navy { color: var(--navy-blue) !important; }

.footer-links a { color: rgba(255,255,255,0.6); transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.social-icons a { transition: 0.3s; }
.social-icons a:hover { color: var(--gold) !important; transform: scale(1.2); }



.church-hero-section {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)),
    url('https://images.unsplash.com/photo-1544427928-c49cdfebf139?q=80');
    background-size: cover;
    background-position: center;
}


.text-gold-glow {
    color: var(--gold) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.bg-navy { background-color: var(--navy-blue) !important; }

.hover-animate {
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.hover-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.bi-heart-fill {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
}

@supports (-webkit-hyphens:none) {
    .social-media-section {
        -webkit-backdrop-filter: blur(10px); 
    }
}

.custom-gold-bg {
    background: linear-gradient(135deg, #a67c00 0%, #7d5d00 100%);
    color: #001f3f; 
}

.social-card {
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(0, 31, 63, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px); 
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.navy-icon {
    font-size: 3rem;
    color: #001f3f !important; 
    display: block;
}

.navy-text {
    color: #001f3f !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#instagram-hashtag {
    font-weight: bold;
    font-style: italic;
}

.navy-card {
    background-color: #001f3f !important; 
    transition: transform 0.3s ease;
}

.gold-icon {
    color: #ffd700; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.navy-card .bi-heart-fill {
    display: inline-block;
    animation: heartbeat 2s infinite;
}

.navy-card.hover-animate:hover {
    background-color: #002d5c !important; 
    transform: translateY(-8px);
}

@supports (-webkit-hyphens:none) {
    .navy-card {
        border: 1px solid rgba(255, 215, 0, 0.1); 
    }
}

.building-hero-card {
    min-height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.building-image-container {
    background-image: url('./assets/building-render.jpg'); 
    background-size: cover;
    background-position: center;
}

.overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 32, 63, 0.8), transparent);
}

.building-content-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hover-grow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.progress-bar-animated {
    animation: progress-stripe 2s linear infinite;
}

@keyframes progress-stripe {
    0% { background-position: 1rem 0; }
    100% { background-position: 0 0; }
}

.shuttle-track {
    position: relative;
    display: flex;
    align-items: center;
}

.shuttle-bus {
    position: absolute;
    left: -50px;
    animation: driveBus 8s linear infinite;
    z-index: 5;
}

.track-label {
    position: absolute;
    top: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #00203f;
    text-transform: uppercase;
}

.start-label { left: 20px; }
.end-label { right: 20px; }

.road-line {
    width: 100%;
    height: 2px;
    border-top: 2px dashed #d4af37;
    margin-top: 40px;
}

@keyframes driveBus {
    0% { left: 5%; transform: scaleX(1); }
    45% { left: 85%; transform: scaleX(1); }
    50% { left: 85%; transform: scaleX(-1); } 
    95% { left: 5%; transform: scaleX(-1); }
    100% { left: 5%; transform: scaleX(1); }
}

.btn-gold { background-color: #d4af37; color: #00203f; }


.bg-navy { background-color: #001f3f !important; }
.bg-navy-light { background-color: rgba(255, 255, 255, 0.05); }
.text-gold { color: #D4AF37 !important; }
.border-gold { border: 2px solid #D4AF37 !important; }


.card-faith {
    transition: all 0.3s ease;
    border-radius: 20px;
}

.card-faith:hover {
    background-color: rgba(212, 175, 55, 0.1) !important;
    transform: translateY(-10px);
}

.gold-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}


.bg-navy-light:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #f1d37e !important;
}



.text-navy { color: #001f3f !important; }

.card-community-light {
    background-color: #ffffff;
    border: 2px solid #D4AF37 !important;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card-community-light:hover {
    background-color: #fcf8e8 !important; 
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-box-gold-light {
    color: #D4AF37;
}

.card-community-light h3 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.text-navy {
    color: #001f3f !important;
}
.text-gold {
    color: #D4AF37 !important;
}
.bg-gold {
    background-color: #D4AF37 !important;
}

.icon-hover-gold {
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-hover-gold:hover {
    color: var(--gold) !important; 
    transform: scale(1.1); 
}