feat: implement Phase 1-3 (Schema JSON-LD, sitemap, robots, FAQ accordion, relief timeline, prayer briefing modal, high-contrast banner)

This commit is contained in:
2026-09-02 14:15:25 -07:00
parent 05a5f7ef63
commit c9432c0079
6 changed files with 851 additions and 24 deletions
+316 -15
View File
@@ -1667,32 +1667,319 @@ button, input, select, textarea {
.sb7-trans-before p { color: var(--slate-600); } .sb7-trans-before p { color: var(--slate-600); }
.sb7-trans-after p { color: var(--slate-200); } .sb7-trans-after p { color: var(--slate-200); }
/* SB7: Transitional CTA Banner */ /* SB7: Transitional CTA Banner - Ultra High Contrast */
.sb7-transitional-bar { .sb7-transitional-bar {
background: linear-gradient(90deg, #101f42 0%, #172d5e 100%); background: linear-gradient(135deg, #071129 0%, #0f214d 50%, #091533 100%);
border: 1px solid rgba(212, 175, 55, 0.3); border: 2px solid var(--gold-400);
border-radius: var(--radius-lg); border-radius: var(--radius-lg);
padding: 36px 40px; padding: 42px 46px;
margin: 60px 0; margin: 64px 0;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
gap: 30px; gap: 32px;
flex-wrap: wrap; box-shadow: 0 16px 40px rgba(5, 10, 25, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
box-shadow: var(--shadow-lg); position: relative;
overflow: hidden;
}
.sb7-transitional-bar::before {
content: '';
position: absolute;
top: -50%;
left: -20%;
width: 140%;
height: 200%;
background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
pointer-events: none;
}
.sb7-transitional-content {
flex: 1;
min-width: 280px;
position: relative;
z-index: 1;
} }
.sb7-transitional-bar h3 { .sb7-transitional-bar h3 {
font-family: var(--font-heading); font-family: var(--font-heading);
font-size: 1.4rem; font-size: 1.55rem;
font-weight: 700; font-weight: 800;
color: var(--white); color: #ffffff !important;
margin-bottom: 6px; margin-bottom: 10px;
line-height: 1.3;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
} }
.sb7-transitional-bar p { .sb7-transitional-bar p {
font-size: 0.95rem; font-size: 1.08rem;
color: var(--slate-300); font-weight: 500;
color: #f8fafc !important;
line-height: 1.65;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
margin: 0;
}
.sb7-transitional-btn {
flex-shrink: 0;
padding: 15px 30px;
font-size: 0.98rem;
font-weight: 800;
white-space: nowrap;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: none;
}
/* Relief Timeline Styles */
.timeline-container {
max-width: 900px;
margin: 50px auto 0;
position: relative;
}
.timeline-container::before {
content: '';
position: absolute;
top: 15px;
bottom: 15px;
left: 28px;
width: 3px;
background: linear-gradient(180deg, var(--gold-400) 0%, var(--relief-red) 70%, var(--slate-300) 100%);
border-radius: 2px;
}
.timeline-item {
position: relative;
padding-left: 72px;
margin-bottom: 36px;
}
.timeline-item:last-child {
margin-bottom: 0;
}
.timeline-dot {
position: absolute;
left: 14px;
top: 4px;
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--white);
border: 3px solid var(--gold-500);
box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-900);
font-weight: 800;
font-size: 0.82rem;
z-index: 2;
}
.timeline-dot.active {
background: var(--relief-red);
border-color: #ffffff;
box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.3);
color: #ffffff;
animation: pulse-dot 2s infinite;
}
.timeline-card {
background: var(--white);
border: 1px solid var(--slate-200);
border-radius: var(--radius-md);
padding: 24px 28px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.timeline-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
border-color: var(--gold-300);
}
.timeline-status-badge {
display: inline-block;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: var(--radius-full);
margin-bottom: 10px;
}
.badge-completed {
background: #ecfdf5;
color: #065f46;
border: 1px solid #a7f3d0;
}
.badge-in-progress {
background: #fef2f2;
color: #991b1b;
border: 1px solid #fecaca;
}
.badge-target {
background: #eff6ff;
color: #1e40af;
border: 1px solid #bfdbfe;
}
.timeline-card h4 {
font-family: var(--font-heading);
font-size: 1.22rem;
font-weight: 700;
color: var(--primary-950);
margin-bottom: 8px;
}
.timeline-card p {
font-size: 0.94rem;
color: var(--slate-600);
line-height: 1.6;
}
/* FAQ Accordion Styles */
.faq-grid {
max-width: 900px;
margin: 48px auto 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.faq-item {
background: var(--white);
border: 1px solid var(--slate-200);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.faq-item:hover {
border-color: var(--gold-300);
}
.faq-item.open {
border-color: var(--gold-400);
box-shadow: var(--shadow-md);
}
.faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 26px;
background: transparent;
border: none;
text-align: left;
font-family: var(--font-heading);
font-size: 1.08rem;
font-weight: 700;
color: var(--primary-950);
cursor: pointer;
gap: 16px;
transition: var(--transition);
}
.faq-question:hover {
color: var(--gold-600);
}
.faq-icon {
width: 28px;
height: 28px;
border-radius: 50%;
background: var(--slate-100);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.3s ease, background-color 0.3s ease;
color: var(--primary-900);
}
.faq-item.open .faq-icon {
transform: rotate(180deg);
background: var(--gold-400);
color: var(--primary-950);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease-out, padding 0.35s ease;
padding: 0 26px;
color: var(--slate-600);
font-size: 0.96rem;
line-height: 1.7;
}
.faq-item.open .faq-answer {
max-height: 350px;
padding: 0 26px 24px 26px;
}
/* Prayer Guide Modal Specifics */
.prayer-modal-box {
max-width: 680px;
max-height: 88vh;
overflow-y: auto;
padding: 40px;
border-radius: var(--radius-lg);
background: var(--white);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
border: 1px solid var(--gold-300);
}
.prayer-point-card {
display: flex;
gap: 16px;
padding: 16px 18px;
background: var(--slate-50);
border: 1px solid var(--slate-200);
border-radius: var(--radius-md);
margin-bottom: 14px;
}
.prayer-point-num {
width: 32px;
height: 32px;
background: var(--grad-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
color: var(--primary-950);
flex-shrink: 0;
}
.prayer-point-content h5 {
font-family: var(--font-heading);
font-size: 1.02rem;
font-weight: 700;
color: var(--primary-900);
margin-bottom: 4px;
}
.prayer-point-content p {
font-size: 0.88rem;
color: var(--slate-600);
line-height: 1.5;
margin: 0;
} }
@media (max-width: 900px) { @media (max-width: 900px) {
@@ -1702,7 +1989,21 @@ button, input, select, textarea {
.sb7-transitional-bar { .sb7-transitional-bar {
flex-direction: column; flex-direction: column;
text-align: center; text-align: center;
padding: 30px 20px; padding: 34px 22px;
gap: 24px;
}
.sb7-transitional-btn {
width: 100%;
}
.timeline-container::before {
left: 20px;
}
.timeline-item {
padding-left: 56px;
}
.timeline-dot {
left: 6px;
} }
} }
+318 -7
View File
@@ -6,14 +6,142 @@
<title>Pastor Víctor Páez | Iglesia Bíblica Bautista de Vista Alegre & Earthquake Rebuilding Fund</title> <title>Pastor Víctor Páez | Iglesia Bíblica Bautista de Vista Alegre & Earthquake Rebuilding Fund</title>
<meta name="description" content="Official bilingual platform of Pastor Víctor Páez, Iglesia Bíblica Bautista de Vista Alegre, and Seminario Bautista de Venezuela in Caracas. Support our emergency earthquake rebuilding & humanitarian relief fund." /> <meta name="description" content="Official bilingual platform of Pastor Víctor Páez, Iglesia Bíblica Bautista de Vista Alegre, and Seminario Bautista de Venezuela in Caracas. Support our emergency earthquake rebuilding & humanitarian relief fund." />
<link rel="canonical" href="https://pastor-victor-venezuela.pages.dev/" />
<link rel="alternate" hreflang="en" href="https://pastor-victor-venezuela.pages.dev/?lang=en" />
<link rel="alternate" hreflang="es" href="https://pastor-victor-venezuela.pages.dev/?lang=es" />
<link rel="alternate" hreflang="x-default" href="https://pastor-victor-venezuela.pages.dev/" />
<!-- Open Graph --> <!-- Open Graph -->
<meta property="og:site_name" content="Iglesia Bíblica Bautista Caracas" />
<meta property="og:title" content="Pastor Víctor Páez | Venezuela Church & Earthquake Rebuilding Fund" /> <meta property="og:title" content="Pastor Víctor Páez | Venezuela Church & Earthquake Rebuilding Fund" />
<meta property="og:description" content="Preaching Christ, training pastors, and rebuilding hope in Caracas, Venezuela. Support the emergency earthquake relief fund." /> <meta property="og:description" content="Preaching Christ, training pastors, and rebuilding hope in Caracas, Venezuela. Support the emergency earthquake relief fund." />
<meta property="og:image" content="assets/images/caracas_hero.jpg" /> <meta property="og:image" content="https://pastor-victor-venezuela.pages.dev/assets/images/caracas_hero.jpg" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:url" content="https://pastor-victor-venezuela.pages.dev/" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Pastor Víctor Páez | Venezuela Church & Earthquake Rebuilding Fund" />
<meta name="twitter:description" content="Preaching Christ, training pastors, and rebuilding hope in Caracas, Venezuela. Support the emergency earthquake relief fund." />
<meta name="twitter:image" content="https://pastor-victor-venezuela.pages.dev/assets/images/caracas_hero.jpg" />
<!-- Structured Data / JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Church",
"@id": "https://pastor-victor-venezuela.pages.dev/#church",
"name": "Iglesia Bíblica Bautista de Vista Alegre",
"alternateName": "Caracas Baptist Bible Church",
"url": "https://pastor-victor-venezuela.pages.dev/",
"logo": "https://pastor-victor-venezuela.pages.dev/assets/images/caracas_hero.jpg",
"image": "https://pastor-victor-venezuela.pages.dev/assets/images/caracas_hero.jpg",
"description": "Independent Baptist church in Caracas, Venezuela founded by Pastor Víctor Páez. Home to the Baptist Seminary of Venezuela and community humanitarian food relief kitchen.",
"address": {
"@type": "PostalAddress",
"streetAddress": "2da. Transversal Av. Rotaria, Quinta Bautista, Urb. La Paz",
"addressLocality": "Caracas",
"addressRegion": "Distrito Capital",
"postalCode": "1020",
"addressCountry": "VE"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 10.485,
"longitude": -66.938
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Sunday"],
"opens": "10:00",
"closes": "12:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Sunday"],
"opens": "18:00",
"closes": "19:30"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Wednesday"],
"opens": "19:00",
"closes": "20:30"
}
],
"leader": {
"@id": "https://pastor-victor-venezuela.pages.dev/#pastor"
}
},
{
"@type": "Person",
"@id": "https://pastor-victor-venezuela.pages.dev/#pastor",
"name": "Pastor Víctor Páez",
"jobTitle": "Senior Pastor & Seminary President",
"worksFor": {
"@id": "https://pastor-victor-venezuela.pages.dev/#church"
},
"description": "Veteran missionary pastor in Caracas, Venezuela with over 30 years of pastoral ministry. Former electrical engineer who planted over 12 churches across Venezuela and trains ministers at Seminario Bautista de Venezuela.",
"nationality": "Venezuelan"
},
{
"@type": "EducationalOrganization",
"@id": "https://pastor-victor-venezuela.pages.dev/#seminary",
"name": "Seminario Bautista de Venezuela",
"alternateName": "SEBEL - Seminario Bautista en Línea",
"url": "https://pastor-victor-venezuela.pages.dev/#seminary",
"parentOrganization": {
"@id": "https://pastor-victor-venezuela.pages.dev/#church"
},
"description": "Bible institute and theological seminary training Venezuelan pastors, missionaries, and church planters."
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Are contributions to Pastor Víctor Páez tax-deductible in the United States?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. All contributions processed through Macedonia World Baptist Missions, Inc. (MWBM) are 100% tax-deductible under section 501(c)(3) of the Internal Revenue Code. Official tax receipts are mailed directly from the MWBM mission board office in Braselton, Georgia."
}
},
{
"@type": "Question",
"name": "How does emergency food and aid reach Caracas without government interference?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Aid is handled through direct local procurement by church leadership and distributed through the church's daily soup kitchen and deacon ministry at Vista Alegre. Food and medical supplies are bought locally or received via verified private channels directly into families' hands."
}
},
{
"@type": "Question",
"name": "What are the most urgent rebuilding priorities for the church campus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The top priority is repairing deep seismic wall fractures in the main sanctuary and re-sealing the roof over the seminary classrooms before tropical torrential rains cause further structural degradation."
}
},
{
"@type": "Question",
"name": "Can mission teams or pastors visit the church and seminary in Caracas?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, we welcome visiting pastors, guest lecturers, and mission teams. Pastor Víctor and his team coordinate secure airport transit from Simón Bolívar International Airport (Maiquetía) and on-campus guest lodging in Vista Alegre."
}
}
]
}
]
}
</script>
<link rel="stylesheet" href="css/styles.css" /> <link rel="stylesheet" href="css/styles.css" />
</head> </head>
<body> <body>
<!-- Header / Navigation --> <!-- Header / Navigation -->
@@ -44,11 +172,13 @@
<a href="#about-pastor" data-i18n="nav.about">Pastor Víctor</a> <a href="#about-pastor" data-i18n="nav.about">Pastor Víctor</a>
<a href="#how-to-help" data-i18n="nav.plan">The Plan</a> <a href="#how-to-help" data-i18n="nav.plan">The Plan</a>
<a href="#seminary" data-i18n="nav.seminary">Seminary</a> <a href="#seminary" data-i18n="nav.seminary">Seminary</a>
<a href="#faq" data-i18n="faq.title">FAQ</a>
<a href="#location" data-i18n="nav.location">Location</a> <a href="#location" data-i18n="nav.location">Location</a>
<a href="#contact" data-i18n="nav.contact">Contact</a> <a href="#contact" data-i18n="nav.contact">Contact</a>
</nav> </nav>
<!-- Language & CTA Actions --> <!-- Language & CTA Actions -->
<div class="nav-actions"> <div class="nav-actions">
<div class="lang-switch" role="group" aria-label="Language Selector"> <div class="lang-switch" role="group" aria-label="Language Selector">
@@ -418,9 +548,55 @@
Official Missionary Project: Pastor Victor Paez • Designated Account with Macedonia World Baptist Missions (MWBM). Official Missionary Project: Pastor Victor Paez • Designated Account with Macedonia World Baptist Missions (MWBM).
</p> </p>
</div> </div>
<!-- Relief in Action Timeline -->
<div class="timeline-container">
<div class="section-header text-center" style="margin-bottom: 36px;">
<span class="section-badge badge-relief" data-i18n="timeline.badge">RESTORATION ROADMAP</span>
<h3 style="font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary-900); margin-top: 8px;" data-i18n="timeline.title">Relief & Rebuilding in Action</h3>
<p style="color: var(--slate-600); max-width: 650px; margin: 8px auto 0;" data-i18n="timeline.desc">Transparent, chronological accountability of every dollar deployed on the ground in Caracas.</p>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<span class="timeline-status-badge badge-completed" data-i18n="timeline.m1_status">Completed</span>
<h4 data-i18n="timeline.m1_title">Immediate Crisis Shelter & Food Bank</h4>
<p data-i18n="timeline.m1_desc">Opened church doors as emergency shelter for displaced neighbors; distributed 1,500 emergency rations and first-aid kits.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot active"></div>
<div class="timeline-card">
<span class="timeline-status-badge badge-in-progress" data-i18n="timeline.m2_status">Active Operation</span>
<h4 data-i18n="timeline.m2_title">Clean Water Hub & Daily Community Kitchen</h4>
<p data-i18n="timeline.m2_desc">Installed gravity-fed water filtration system; serving over 300 hot, nutritious meals every single weekday to children and seniors.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot active"></div>
<div class="timeline-card" style="border-left: 4px solid var(--relief-red);">
<span class="timeline-status-badge badge-in-progress" data-i18n="timeline.m3_status">Current Priority Need</span>
<h4 data-i18n="timeline.m3_title">Structural Wall Reinforcement & Roof Sealing</h4>
<p data-i18n="timeline.m3_desc">Repairing major masonry shear cracks in the sanctuary and restoring 4 seminary classrooms before the rainy season worsens foundation settling.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-card">
<span class="timeline-status-badge badge-target" data-i18n="timeline.m4_status">Target Vision</span>
<h4 data-i18n="timeline.m4_title">Dormitory Restoration & New Church Plants</h4>
<p data-i18n="timeline.m4_desc">Rebuilding resident student dorms for 20 national pastoral candidates and deploying graduates to plant 2 new churches in Miranda and Aragua.</p>
</div>
</div>
</div>
</div> </div>
</section> </section>
<!-- SB7 Element 6: The Stakes (What Happens If We Do Not Act / Avoid Failure) --> <!-- SB7 Element 6: The Stakes (What Happens If We Do Not Act / Avoid Failure) -->
<section class="section sb7-stakes-section"> <section class="section sb7-stakes-section">
<div class="container"> <div class="container">
@@ -488,16 +664,22 @@
</div> </div>
</div> </div>
<!-- Transitional CTA Bar --> <!-- Transitional CTA Bar - Ultra High Contrast & Interactive -->
<div class="sb7-transitional-bar"> <div class="sb7-transitional-bar">
<div> <div class="sb7-transitional-content">
<h3 data-i18n="sb7.transitional_cta">Download Free Venezuela Ministry & Prayer Guide (PDF)</h3> <h3 data-i18n="sb7.transitional_cta">Download Free Venezuela Ministry & Prayer Guide (PDF)</h3>
<p>Get immediate access to our Caracas earthquake field overview, full prayer guide, and photo journal.</p> <p data-i18n="sb7.transitional_desc">Get immediate access to our Caracas earthquake field overview, full prayer guide, and photo journal.</p>
</div> </div>
<a href="#contact" class="btn btn-primary" data-i18n="nav.contact"> <button id="btn-open-prayer-guide" class="btn btn-primary sb7-transitional-btn">
Request Free Guide ➔ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 8px;">
</a> <path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="7 10 12 15 17 10"></polyline>
<line x1="12" y1="15" x2="12" y2="3"></line>
</svg>
<span data-i18n="prayer.btn_open">View & Download Guide</span>
</button>
</div> </div>
</div> </div>
</section> </section>
@@ -718,10 +900,72 @@
</div> </div>
</div> </div>
</div> </div>
<!-- FAQ Section -->
<section id="faq" class="section section-light">
<div class="container">
<div class="section-header text-center">
<span class="section-badge badge-gold" data-i18n="faq.badge">ANSWERS & CLARITY</span>
<h2 class="section-title" data-i18n="faq.title">Frequently Asked Questions</h2>
<p class="section-desc" data-i18n="faq.desc">Everything you need to know about partnering with the work in Caracas, Venezuela.</p>
</div>
<div class="faq-grid">
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
<span data-i18n="faq.q1">Are contributions tax-deductible in the United States?</span>
<span class="faq-icon"></span>
</button>
<div class="faq-answer">
<p data-i18n="faq.a1">Yes. All contributions processed through Macedonia World Baptist Missions, Inc. (MWBM) are 100% tax-deductible under section 501(c)(3) of the Internal Revenue Code. Official tax receipts are mailed directly from the MWBM mission board office in Braselton, Georgia.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
<span data-i18n="faq.q2">How does emergency food and aid reach Caracas without government interference?</span>
<span class="faq-icon"></span>
</button>
<div class="faq-answer">
<p data-i18n="faq.a2">Aid is handled through direct local procurement by church leadership and distributed through the church's daily soup kitchen and deacon ministry at Vista Alegre. We purchase food and medical supplies locally or receive humanitarian supplies through verified private channels directly into the hands of families.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
<span data-i18n="faq.q3">What are the current degrees and training options at Seminario Bautista de Venezuela?</span>
<span class="faq-icon"></span>
</button>
<div class="faq-answer">
<p data-i18n="faq.a3">We offer intensive theological degrees for pastoral candidates and ministry workers, including systematic theology, expository preaching, Greek and Hebrew basics, and church planting practicums. In addition to campus classes in Caracas, we provide online distance education through SEBEL for remote students.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
<span data-i18n="faq.q4">Can mission teams or pastors visit the church and seminary?</span>
<span class="faq-icon"></span>
</button>
<div class="faq-answer">
<p data-i18n="faq.a4">Yes, we welcome visiting pastors, guest lecturers, and mission teams. Pastor Víctor and his team coordinate secure airport transit from Simón Bolívar International Airport (Maiquetía) and on-campus guest lodging in Vista Alegre. Please reach out via our contact form to coordinate dates.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
<span data-i18n="faq.q5">What are the most urgent rebuilding priorities for the church campus?</span>
<span class="faq-icon"></span>
</button>
<div class="faq-answer">
<p data-i18n="faq.a5">Our top priority is repairing deep seismic wall fractures in the main sanctuary and re-sealing the roof over the seminary classrooms before tropical torrential rains cause further structural degradation. Second is securing food provisions for the community soup kitchen.</p>
</div>
</div>
</div>
</div>
</section> </section>
<!-- Contact Form & Prayer Requests --> <!-- Contact Form & Prayer Requests -->
<section id="contact" class="section section-muted"> <section id="contact" class="section section-muted">
<div class="container"> <div class="container">
<div class="contact-grid"> <div class="contact-grid">
<div class="contact-form-card"> <div class="contact-form-card">
@@ -868,8 +1112,75 @@
</div> </div>
</div> </div>
<!-- Prayer Guide Modal -->
<div id="prayer-modal" class="modal-overlay">
<div class="modal-box prayer-modal-box">
<button id="prayer-modal-close" class="modal-close-btn">&times;</button>
<div style="text-align: center; margin-bottom: 24px;">
<span class="section-badge badge-gold" data-i18n="nav.contact">MINISTRY BRIEFING</span>
<h3 style="font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-900); margin-top: 8px;" data-i18n="prayer.modal_title">Venezuela Ministry & Prayer Briefing</h3>
<p style="color: var(--slate-600); font-size: 0.95rem; margin-top: 6px;" data-i18n="prayer.modal_sub">Join us in praying specifically for God's work in Caracas.</p>
</div>
<div class="prayer-point-card">
<div class="prayer-point-num">1</div>
<div class="prayer-point-content">
<h5 data-i18n="prayer.p1_title">Sanctuary & Seminary Rebuilding</h5>
<p data-i18n="prayer.p1_desc">Pray for safety, building materials, and the $50,000 fund to complete structural reinforcement before heavy rains.</p>
</div>
</div>
<div class="prayer-point-card">
<div class="prayer-point-num">2</div>
<div class="prayer-point-content">
<h5 data-i18n="prayer.p2_title">Daily Food & Clean Water Provisions</h5>
<p data-i18n="prayer.p2_desc">Pray for continuous supply of rice, beans, proteins, and baby formula for the 300+ daily meals served to needy neighborhood families.</p>
</div>
</div>
<div class="prayer-point-card">
<div class="prayer-point-num">3</div>
<div class="prayer-point-content">
<h5 data-i18n="prayer.p3_title">Seminary Students & Future Pastors</h5>
<p data-i18n="prayer.p3_desc">Pray for the young men studying under Pastor Víctor, that God protects their families and equips them with doctrinal boldness.</p>
</div>
</div>
<div class="prayer-point-card">
<div class="prayer-point-num">4</div>
<div class="prayer-point-content">
<h5 data-i18n="prayer.p4_title">Pastor Víctor Páez & Ministry Staff</h5>
<p data-i18n="prayer.p4_desc">Pray for physical endurance, wisdom, spiritual protection, and renewed strength as he shepherds in the midst of national hardship.</p>
</div>
</div>
<div class="prayer-point-card">
<div class="prayer-point-num">5</div>
<div class="prayer-point-content">
<h5 data-i18n="prayer.p5_title">Spiritual Awakening Across Caracas</h5>
<p data-i18n="prayer.p5_desc">Pray that hearts broken by economic and physical crisis find salvation, lasting peace, and forgiveness in Jesus Christ.</p>
</div>
</div>
<div style="margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap;">
<button onclick="window.print();" class="btn btn-primary" style="flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 6 2 18 2 18 9"></polyline>
<path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path>
<rect x="6" y="14" width="12" height="8"></rect>
</svg>
<span data-i18n="prayer.btn_print">Print / Save as PDF</span>
</button>
<button id="prayer-modal-close-btn" class="btn btn-outline-white" style="flex: 1; color: var(--slate-700); border-color: var(--slate-300);" data-i18n="modal.close">
Close Window
</button>
</div>
</div>
</div>
<!-- Footer --> <!-- Footer -->
<footer class="site-footer"> <footer class="site-footer">
<div class="container"> <div class="container">
<div class="scripture-banner" data-i18n="footer.scripture"> <div class="scripture-banner" data-i18n="footer.scripture">
“Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord.” — 1 Corinthians 15:58 “Therefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord.” — 1 Corinthians 15:58
+64
View File
@@ -187,6 +187,70 @@ document.addEventListener('DOMContentLoaded', () => {
}); });
} }
// FAQ Accordion Interaction
const faqItems = document.querySelectorAll('.faq-item');
faqItems.forEach(item => {
const questionBtn = item.querySelector('.faq-question');
if (questionBtn) {
questionBtn.addEventListener('click', () => {
const isOpen = item.classList.contains('open');
faqItems.forEach(other => {
if (other !== item) {
other.classList.remove('open');
const btn = other.querySelector('.faq-question');
if (btn) btn.setAttribute('aria-expanded', 'false');
}
});
item.classList.toggle('open', !isOpen);
questionBtn.setAttribute('aria-expanded', String(!isOpen));
});
}
});
// Prayer Guide Modal Logic
const prayerModal = document.getElementById('prayer-modal');
const btnOpenPrayer = document.getElementById('btn-open-prayer-guide');
const prayerModalClose = document.getElementById('prayer-modal-close');
const prayerModalCloseBtn = document.getElementById('prayer-modal-close-btn');
function openPrayerModal() {
if (prayerModal) {
prayerModal.classList.add('active');
document.body.style.overflow = 'hidden';
}
}
function closePrayerModal() {
if (prayerModal) {
prayerModal.classList.remove('active');
document.body.style.overflow = '';
}
}
if (btnOpenPrayer) {
btnOpenPrayer.addEventListener('click', (e) => {
e.preventDefault();
openPrayerModal();
});
}
if (prayerModalClose) {
prayerModalClose.addEventListener('click', closePrayerModal);
}
if (prayerModalCloseBtn) {
prayerModalCloseBtn.addEventListener('click', closePrayerModal);
}
if (prayerModal) {
prayerModal.addEventListener('click', (e) => {
if (e.target === prayerModal) {
closePrayerModal();
}
});
}
// Initial Language Load // Initial Language Load
setLanguage(currentLang); setLanguage(currentLang);
}); });
+104 -2
View File
@@ -213,9 +213,60 @@ const translations = {
// Transitional CTA // Transitional CTA
"sb7.transitional_cta": "Download Free Venezuela Ministry & Prayer Guide (PDF)", "sb7.transitional_cta": "Download Free Venezuela Ministry & Prayer Guide (PDF)",
"sb7.direct_cta": "Join the Rebuilding Mission Now" "sb7.transitional_desc": "Get immediate access to our Caracas earthquake field overview, full prayer guide, and photo journal.",
"sb7.direct_cta": "Join the Rebuilding Mission Now",
// Relief Timeline
"timeline.badge": "RESTORATION ROADMAP",
"timeline.title": "Relief & Rebuilding in Action",
"timeline.desc": "Transparent, chronological accountability of every dollar deployed on the ground in Caracas.",
"timeline.m1_status": "Completed",
"timeline.m1_title": "Immediate Crisis Shelter & Food Bank",
"timeline.m1_desc": "Opened church doors as emergency shelter for displaced neighbors; distributed 1,500 emergency rations and first-aid kits.",
"timeline.m2_status": "Active Operation",
"timeline.m2_title": "Clean Water Hub & Daily Community Kitchen",
"timeline.m2_desc": "Installed gravity-fed water filtration system; serving over 300 hot, nutritious meals every single weekday to children and seniors.",
"timeline.m3_status": "Current Priority Need",
"timeline.m3_title": "Structural Wall Reinforcement & Roof Sealing",
"timeline.m3_desc": "Repairing major masonry shear cracks in the sanctuary and restoring 4 seminary classrooms before the rainy season worsens foundation settling.",
"timeline.m4_status": "Target Vision",
"timeline.m4_title": "Dormitory Restoration & New Church Plants",
"timeline.m4_desc": "Rebuilding resident student dorms for 20 national pastoral candidates and deploying graduates to plant 2 new churches in Miranda and Aragua.",
// FAQ Section
"faq.badge": "ANSWERS & CLARITY",
"faq.title": "Frequently Asked Questions",
"faq.desc": "Everything you need to know about partnering with the work in Caracas, Venezuela.",
"faq.q1": "Are contributions tax-deductible in the United States?",
"faq.a1": "Yes. All contributions processed through Macedonia World Baptist Missions, Inc. (MWBM) are 100% tax-deductible under section 501(c)(3) of the Internal Revenue Code. Official tax receipts are mailed directly from the MWBM mission board office in Braselton, Georgia.",
"faq.q2": "How does emergency food and aid reach Caracas without government interference?",
"faq.a2": "Aid is handled through direct local procurement by church leadership and distributed through the church's daily soup kitchen and deacon ministry at Vista Alegre. We purchase food and medical supplies locally or receive humanitarian supplies through verified private channels directly into the hands of families.",
"faq.q3": "What are the current degrees and training options at Seminario Bautista de Venezuela?",
"faq.a3": "We offer intensive theological degrees for pastoral candidates and ministry workers, including systematic theology, expository preaching, Greek and Hebrew basics, and church planting practicums. In addition to campus classes in Caracas, we provide online distance education through SEBEL for remote students.",
"faq.q4": "Can mission teams or pastors visit the church and seminary?",
"faq.a4": "Yes, we welcome visiting pastors, guest lecturers, and mission teams. Pastor Víctor and his team coordinate secure airport transit from Simón Bolívar International Airport (Maiquetía) and on-campus guest lodging in Vista Alegre. Please reach out via our contact form to coordinate dates.",
"faq.q5": "What are the most urgent rebuilding priorities for the church campus?",
"faq.a5": "Our top priority is repairing deep seismic wall fractures in the main sanctuary and re-sealing the roof over the seminary classrooms before tropical torrential rains cause further structural degradation. Second is securing food provisions for the community soup kitchen.",
// Prayer Guide Modal
"prayer.btn_open": "View & Download Guide",
"prayer.modal_title": "Venezuela Ministry & Prayer Briefing",
"prayer.modal_sub": "Join us in praying specifically for God's work in Caracas.",
"prayer.p1_title": "Sanctuary & Seminary Rebuilding",
"prayer.p1_desc": "Pray for safety, building materials, and the $50,000 fund to complete structural reinforcement before heavy rains.",
"prayer.p2_title": "Daily Food & Clean Water Provisions",
"prayer.p2_desc": "Pray for continuous supply of rice, beans, proteins, and baby formula for the 300+ daily meals served to needy neighborhood families.",
"prayer.p3_title": "Seminary Students & Future Pastors",
"prayer.p3_desc": "Pray for the young men studying under Pastor Víctor, that God protects their families and equips them with doctrinal boldness.",
"prayer.p4_title": "Pastor Víctor Páez & Ministry Staff",
"prayer.p4_desc": "Pray for physical endurance, wisdom, spiritual protection, and renewed strength as he shepherds in the midst of national hardship.",
"prayer.p5_title": "Spiritual Awakening Across Caracas",
"prayer.p5_desc": "Pray that hearts broken by economic and physical crisis find salvation, lasting peace, and forgiveness in Jesus Christ.",
"prayer.btn_print": "Print / Save as PDF"
}, },
es: { es: {
// Header & Nav // Header & Nav
"nav.brand_title": "Iglesia Bíblica Bautista", "nav.brand_title": "Iglesia Bíblica Bautista",
@@ -428,7 +479,58 @@ const translations = {
// Transitional CTA - Spanish // Transitional CTA - Spanish
"sb7.transitional_cta": "Descargar Guía Gratuita de Oración y Ministerio (PDF)", "sb7.transitional_cta": "Descargar Guía Gratuita de Oración y Ministerio (PDF)",
"sb7.direct_cta": "Unirse a la Misión de Reconstrucción" "sb7.transitional_desc": "Acceda de inmediato al reporte del terremoto en Caracas, guía completa de oración y fotos de la obra.",
"sb7.direct_cta": "Unirse a la Misión de Reconstrucción",
// Relief Timeline - Spanish
"timeline.badge": "HOJA DE RUTA",
"timeline.title": "Ayuda y Reconstrucción en Acción",
"timeline.desc": "Rendición de cuentas transparente y cronológica de cada recurso en Caracas.",
"timeline.m1_status": "Completado",
"timeline.m1_title": "Refugio de Emergencia y Banco de Alimentos",
"timeline.m1_desc": "Apertura del templo como refugio para familias afectadas; distribución de 1,500 raciones de emergencia y primeros auxilios.",
"timeline.m2_status": "Operación Activa",
"timeline.m2_title": "Centro de Agua Limpia y Comedor Diario",
"timeline.m2_desc": "Instalación de sistema de filtración de agua potable; servicio diario de más de 300 comidas calientes a niños y ancianos.",
"timeline.m3_status": "Prioridad Urgente Actual",
"timeline.m3_title": "Refuerzo Estructural y Sellado de Techos",
"timeline.m3_desc": "Reparación de grietas en muros del santuario y restauración de 4 aulas del seminario antes de que las lluvias agraven el terreno.",
"timeline.m4_status": "Visión Futura",
"timeline.m4_title": "Restauración de Dormitorios y Nuevas Iglesias",
"timeline.m4_desc": "Reconstrucción de dormitorios para 20 estudiantes del seminario y envío de graduados para plantar 2 nuevas iglesias.",
// FAQ Section - Spanish
"faq.badge": "RESPUESTAS Y CLARIDAD",
"faq.title": "Preguntas Frecuentes",
"faq.desc": "Todo lo que necesita saber para apoyar la obra en Caracas, Venezuela.",
"faq.q1": "¿Son las ofrendas y donaciones deducibles de impuestos en EE.UU.?",
"faq.a1": "Sí. Todas las ofrendas procesadas a través de Macedonia World Baptist Missions, Inc. (MWBM) son 100% deducibles de impuestos bajo la sección 501(c)(3) en EE.UU. Los recibos tributarios oficiales son emitidos directamente por la oficina de la misión en Braselton, Georgia.",
"faq.q2": "¿Cómo llega la ayuda humanitaria y alimentos a Caracas sin interferencia gubernamental?",
"faq.a2": "La ayuda es gestionada directamente por el liderazgo pastoral y distribuida a través del comedor comunitario y el ministerio de diáconos en Vista Alegre. Los alimentos e insumos se compran localmente o se reciben por canales humanitarios privados directos para las familias.",
"faq.q3": "¿Cuáles son los programas de estudio del Seminario Bautista de Venezuela?",
"faq.a3": "Ofrecemos formación teológica intensiva para pastores y obreros, incluyendo teología sistemática, predicación expositiva, idiomas bíblicos y plantación de iglesias. Además de las clases presenciales en Caracas, contamos con educación a distancia mediante SEBEL.",
"faq.q4": "¿Pueden pastores o grupos misioneros visitar la iglesia y el seminario en Caracas?",
"faq.a4": "Sí, recibimos con gozo a pastores, profesores invitados y equipos de misiones. El Pastor Víctor coordina el traslado seguro desde el Aeropuerto de Maiquetía y hospedaje en nuestras instalaciones. Por favor contáctenos para coordinar fechas.",
"faq.q5": "¿Cuáles son las prioridades más urgentes de reconstrucción?",
"faq.a5": "La prioridad inmediata es reparar las fisuras estructurales del santuario principal y sellar el techo de las aulas del seminario antes de que las lluvias tropicales empeoren los cimientos. En segundo lugar, asegurar alimentos para el comedor comunitario.",
// Prayer Guide Modal - Spanish
"prayer.btn_open": "Ver y Descargar Guía",
"prayer.modal_title": "Guía de Oración y Ministerio por Venezuela",
"prayer.modal_sub": "Acompáñenos orando específicamente por la obra de Dios en Caracas.",
"prayer.p1_title": "Reconstrucción del Templo y Seminario",
"prayer.p1_desc": "Ore por seguridad, materiales y provisión de los $50,000 para culminar las obras antes de las lluvias.",
"prayer.p2_title": "Provisión de Alimentos y Agua Limpia",
"prayer.p2_desc": "Ore por la provisión continua de granos, proteínas y leche para las más de 300 comidas que se sirven a diario.",
"prayer.p3_title": "Estudiantes del Seminario y Futuros Pastores",
"prayer.p3_desc": "Ore por los jóvenes que se preparan con el Pastor Víctor, que Dios proteja a sus familias y les dé denuedo doctrinal.",
"prayer.p4_title": "Pastor Víctor Páez y el Equipo Ministerial",
"prayer.p4_desc": "Ore por salud, sabiduría y fortaleza espiritual mientras pastorea en medio de la adversidad nacional.",
"prayer.p5_title": "Avivamiento Espiritual en Caracas",
"prayer.p5_desc": "Ore para que muchos corazones afectados por la crisis encuentren salvación y paz eterna en Cristo Jesús.",
"prayer.btn_print": "Imprimir / Guardar PDF"
} }
}; };
+6
View File
@@ -0,0 +1,6 @@
# robots.txt for pastor-victor-venezuela.pages.dev
User-agent: *
Allow: /
# Sitemaps
Sitemap: https://pastor-victor-venezuela.pages.dev/sitemap.xml
+43
View File
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://pastor-victor-venezuela.pages.dev/</loc>
<lastmod>2026-09-02</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
<xhtml:link rel="alternate" hreflang="en" href="https://pastor-victor-venezuela.pages.dev/?lang=en" />
<xhtml:link rel="alternate" hreflang="es" href="https://pastor-victor-venezuela.pages.dev/?lang=es" />
<xhtml:link rel="alternate" hreflang="x-default" href="https://pastor-victor-venezuela.pages.dev/" />
</url>
<url>
<loc>https://pastor-victor-venezuela.pages.dev/#rebuilding-fund</loc>
<lastmod>2026-09-02</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://pastor-victor-venezuela.pages.dev/#about</loc>
<lastmod>2026-09-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://pastor-victor-venezuela.pages.dev/#seminary</loc>
<lastmod>2026-09-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://pastor-victor-venezuela.pages.dev/#faq</loc>
<lastmod>2026-09-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://pastor-victor-venezuela.pages.dev/#contact</loc>
<lastmod>2026-09-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
</urlset>