feat: add 8.5x11 printable prayer card, vector QR codes, local Caracas SEO neighborhood tags, and monthly church sponsorship tiers

This commit is contained in:
2026-09-02 14:20:37 -07:00
parent c9432c0079
commit f83a41b4fc
6 changed files with 597 additions and 2 deletions
+136
View File
@@ -2006,4 +2006,140 @@ button, input, select, textarea {
}
}
/* Caracas Communities & Neighborhoods Tags (Local SEO) */
.neighborhoods-box {
margin-top: 48px;
background: var(--white);
border: 1px solid var(--slate-200);
border-radius: var(--radius-md);
padding: 32px 36px;
box-shadow: var(--shadow-sm);
}
.neighborhoods-header h4 {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 700;
color: var(--primary-950);
margin-bottom: 8px;
}
.neighborhoods-header p {
color: var(--slate-600);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 20px;
}
.neighborhood-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.n-tag {
background: var(--slate-100);
color: var(--primary-900);
border: 1px solid var(--slate-200);
padding: 6px 14px;
border-radius: var(--radius-full);
font-size: 0.85rem;
font-weight: 600;
transition: var(--transition);
}
.n-tag:hover {
background: var(--gold-100, #fef9c3);
border-color: var(--gold-400);
color: var(--primary-950);
transform: translateY(-1px);
}
/* Monthly Church Sponsorship Section */
.sponsorship-section {
margin-bottom: 56px;
}
.sponsorship-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 28px;
max-width: 1050px;
margin: 0 auto;
}
.sponsor-card {
background: var(--white);
border: 1px solid var(--slate-200);
border-radius: var(--radius-lg);
padding: 36px 28px;
display: flex;
flex-direction: column;
box-shadow: var(--shadow-sm);
transition: var(--transition);
position: relative;
}
.sponsor-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--gold-400);
}
.sponsor-card.featured {
border: 2px solid var(--gold-500);
box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18);
background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}
.sponsor-badge-featured {
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background: var(--grad-gold);
color: var(--primary-950);
font-size: 0.76rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 14px;
border-radius: var(--radius-full);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.sponsor-tier-price {
font-family: var(--font-heading);
font-size: 2.3rem;
font-weight: 800;
color: var(--primary-950);
margin-bottom: 12px;
line-height: 1;
}
.sponsor-tier-price span {
font-size: 1rem;
font-weight: 600;
color: var(--slate-500);
font-family: var(--font-sans);
}
.sponsor-card h4 {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 700;
color: var(--primary-900);
margin-bottom: 10px;
}
.sponsor-card p {
font-size: 0.92rem;
color: var(--slate-600);
line-height: 1.6;
margin-bottom: 24px;
flex-grow: 1;
}