1594 lines
31 KiB
CSS
1594 lines
31 KiB
CSS
/* Modern Design System - Pastor Víctor Páez / IBBVA Venezuela Church & Relief */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');
|
|
|
|
:root {
|
|
/* Core Color Tokens */
|
|
--primary-950: #060d1f;
|
|
--primary-900: #0a142f;
|
|
--primary-800: #12214d;
|
|
--primary-700: #1e3575;
|
|
--primary-600: #29479b;
|
|
--primary-500: #3b62c4;
|
|
|
|
--gold-500: #d4af37;
|
|
--gold-400: #e5c358;
|
|
--gold-300: #f4d884;
|
|
--gold-glow: rgba(212, 175, 55, 0.28);
|
|
|
|
--relief-red: #e63946;
|
|
--relief-glow: rgba(230, 57, 70, 0.35);
|
|
|
|
--slate-900: #0f172a;
|
|
--slate-800: #1e293b;
|
|
--slate-700: #334155;
|
|
--slate-600: #475569;
|
|
--slate-500: #64748b;
|
|
--slate-400: #94a3b8;
|
|
--slate-200: #e2e8f0;
|
|
--slate-100: #f1f5f9;
|
|
--slate-50: #f8fafc;
|
|
--white: #ffffff;
|
|
|
|
/* Typography */
|
|
--font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
|
|
/* Gradients & Shadows */
|
|
--grad-hero: linear-gradient(135deg, rgba(6, 13, 31, 0.94) 0%, rgba(10, 20, 47, 0.88) 50%, rgba(30, 53, 117, 0.85) 100%);
|
|
--grad-gold: linear-gradient(135deg, #f4d884 0%, #d4af37 60%, #b8911f 100%);
|
|
--grad-relief: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
|
|
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
--shadow-md: 0 8px 24px rgba(6, 13, 31, 0.1);
|
|
--shadow-lg: 0 16px 40px rgba(6, 13, 31, 0.16);
|
|
--shadow-xl: 0 24px 60px rgba(6, 13, 31, 0.22);
|
|
--shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.35);
|
|
--shadow-relief: 0 10px 30px rgba(230, 57, 70, 0.35);
|
|
|
|
--radius-sm: 8px;
|
|
--radius-md: 14px;
|
|
--radius-lg: 20px;
|
|
--radius-full: 9999px;
|
|
|
|
--transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
|
|
/* Reset & Base Styles */
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-body);
|
|
background-color: var(--slate-50);
|
|
color: var(--slate-800);
|
|
line-height: 1.65;
|
|
-webkit-font-smoothing: antialiased;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
button, input, select, textarea {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
|
|
/* Layout Utilities */
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1240px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.section {
|
|
padding: 96px 0;
|
|
}
|
|
|
|
.section-dark {
|
|
background-color: var(--primary-950);
|
|
color: var(--white);
|
|
}
|
|
|
|
.section-muted {
|
|
background-color: var(--slate-100);
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
/* Header & Sticky Nav */
|
|
.site-header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
background: rgba(6, 13, 31, 0.88);
|
|
backdrop-filter: blur(14px);
|
|
-webkit-backdrop-filter: blur(14px);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 80px;
|
|
}
|
|
|
|
.brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
}
|
|
|
|
.brand-icon {
|
|
width: 44px;
|
|
height: 44px;
|
|
background: var(--grad-gold);
|
|
border-radius: var(--radius-sm);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-950);
|
|
font-size: 22px;
|
|
font-weight: 900;
|
|
box-shadow: var(--shadow-gold);
|
|
}
|
|
|
|
.brand-text h1 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.15rem;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.brand-text span {
|
|
font-size: 0.75rem;
|
|
color: var(--gold-300);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
display: block;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 26px;
|
|
}
|
|
|
|
.nav-links a {
|
|
font-size: 0.92rem;
|
|
font-weight: 500;
|
|
color: var(--slate-200);
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--gold-400);
|
|
}
|
|
|
|
.nav-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
/* Bilingual Language Switcher */
|
|
.lang-switch {
|
|
display: inline-flex;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(212, 175, 55, 0.35);
|
|
border-radius: var(--radius-full);
|
|
padding: 3px;
|
|
gap: 2px;
|
|
}
|
|
|
|
.lang-btn {
|
|
padding: 6px 13px;
|
|
border-radius: var(--radius-full);
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
color: var(--slate-200);
|
|
background: transparent;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.lang-btn.active {
|
|
background: var(--grad-gold);
|
|
color: var(--primary-950);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
padding: 12px 26px;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
border-radius: var(--radius-full);
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--grad-gold);
|
|
color: var(--primary-950);
|
|
box-shadow: var(--shadow-gold);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
|
|
}
|
|
|
|
.btn-relief {
|
|
background: var(--grad-relief);
|
|
color: var(--white);
|
|
box-shadow: var(--shadow-relief);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.btn-relief:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
|
|
}
|
|
|
|
.btn-outline-white {
|
|
border: 1px solid rgba(255, 255, 255, 0.35);
|
|
color: var(--white);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.btn-outline-white:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-color: var(--white);
|
|
}
|
|
|
|
.btn-full {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Mobile Toggle */
|
|
.mobile-toggle {
|
|
display: none;
|
|
background: none;
|
|
color: var(--white);
|
|
font-size: 26px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Emergency Alert Bar */
|
|
.emergency-bar {
|
|
background: linear-gradient(90deg, #b70914 0%, #e63946 50%, #b70914 100%);
|
|
color: var(--white);
|
|
padding: 10px 0;
|
|
font-size: 0.88rem;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.emergency-bar span.pulse-dot {
|
|
display: inline-block;
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background-color: #fff;
|
|
margin-right: 8px;
|
|
animation: pulseDot 1.4s infinite;
|
|
}
|
|
|
|
@keyframes pulseDot {
|
|
0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
|
|
70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 8px rgba(255,255,255,0); }
|
|
100% { transform: scale(0.9); opacity: 0.8; }
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
position: relative;
|
|
min-height: 92vh;
|
|
display: flex;
|
|
align-items: center;
|
|
background-image: var(--grad-hero), url('../assets/images/caracas_hero.jpg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
color: var(--white);
|
|
padding-top: 140px;
|
|
padding-bottom: 80px;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 820px;
|
|
}
|
|
|
|
.eyebrow {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 14px;
|
|
background: rgba(230, 57, 70, 0.2);
|
|
border: 1px solid rgba(230, 57, 70, 0.4);
|
|
border-radius: var(--radius-full);
|
|
color: #ff9b9f;
|
|
font-size: 0.82rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.hero-title {
|
|
font-family: var(--font-heading);
|
|
font-size: clamp(2.3rem, 5vw, 4rem);
|
|
font-weight: 800;
|
|
line-height: 1.12;
|
|
margin-bottom: 24px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.hero-title .highlight-gold {
|
|
background: var(--grad-gold);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.18rem;
|
|
color: var(--slate-200);
|
|
line-height: 1.7;
|
|
margin-bottom: 36px;
|
|
max-width: 720px;
|
|
}
|
|
|
|
.hero-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
/* Hero Stats Bar */
|
|
.hero-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
|
|
gap: 20px;
|
|
padding-top: 36px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.stat-item h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 2.3rem;
|
|
font-weight: 800;
|
|
color: var(--gold-400);
|
|
line-height: 1;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.stat-item p {
|
|
font-size: 0.86rem;
|
|
color: var(--slate-300);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Section Header Shared */
|
|
.section-header {
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
.section-badge {
|
|
display: inline-block;
|
|
padding: 5px 14px;
|
|
border-radius: var(--radius-full);
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.badge-gold {
|
|
background: rgba(212, 175, 55, 0.15);
|
|
color: #b8911f;
|
|
border: 1px solid rgba(212, 175, 55, 0.3);
|
|
}
|
|
|
|
.badge-relief {
|
|
background: rgba(230, 57, 70, 0.12);
|
|
color: var(--relief-red);
|
|
border: 1px solid rgba(230, 57, 70, 0.25);
|
|
}
|
|
|
|
.section-title {
|
|
font-family: var(--font-heading);
|
|
font-size: clamp(2rem, 3.5vw, 2.9rem);
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
margin-bottom: 16px;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.section-desc {
|
|
font-size: 1.1rem;
|
|
color: var(--slate-600);
|
|
max-width: 760px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.section-dark .section-desc {
|
|
color: var(--slate-300);
|
|
}
|
|
|
|
/* Rebuilding Fund Section */
|
|
.relief-card-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1.2fr 0.8fr;
|
|
gap: 36px;
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
padding: 40px;
|
|
box-shadow: var(--shadow-xl);
|
|
border: 1px solid var(--slate-200);
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.relief-media {
|
|
border-radius: var(--radius-md);
|
|
overflow: hidden;
|
|
position: relative;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.relief-media img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.6s ease;
|
|
}
|
|
|
|
.relief-media:hover img {
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
.relief-media-badge {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 20px;
|
|
right: 20px;
|
|
background: rgba(6, 13, 31, 0.85);
|
|
backdrop-filter: blur(8px);
|
|
padding: 16px 20px;
|
|
border-radius: var(--radius-md);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
color: var(--white);
|
|
}
|
|
|
|
.relief-media-badge p {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
/* Progress Bar Widget */
|
|
.progress-widget {
|
|
background: var(--slate-50);
|
|
border: 1px solid var(--slate-200);
|
|
border-radius: var(--radius-md);
|
|
padding: 30px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.progress-header h4 {
|
|
font-size: 0.92rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--slate-500);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.progress-amount {
|
|
font-family: var(--font-heading);
|
|
font-size: 2.8rem;
|
|
font-weight: 900;
|
|
color: var(--relief-red);
|
|
line-height: 1;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.progress-subtext {
|
|
font-size: 0.95rem;
|
|
color: var(--slate-600);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.progress-bar-container {
|
|
width: 100%;
|
|
height: 16px;
|
|
background: var(--slate-200);
|
|
border-radius: var(--radius-full);
|
|
overflow: hidden;
|
|
margin-bottom: 16px;
|
|
position: relative;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
height: 100%;
|
|
width: 70%;
|
|
background: linear-gradient(90deg, #f43f5e, #e11d48, #be123c);
|
|
border-radius: var(--radius-full);
|
|
position: relative;
|
|
transition: width 1.2s ease-in-out;
|
|
}
|
|
|
|
.progress-bar-fill::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
|
|
animation: shine 2s infinite;
|
|
}
|
|
|
|
@keyframes shine {
|
|
0% { transform: translateX(-100%); }
|
|
100% { transform: translateX(100%); }
|
|
}
|
|
|
|
.progress-meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--slate-600);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.urgent-note-box {
|
|
background: rgba(230, 57, 70, 0.08);
|
|
border-left: 4px solid var(--relief-red);
|
|
padding: 14px 18px;
|
|
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
|
|
font-size: 0.88rem;
|
|
color: #991b1b;
|
|
margin-bottom: 24px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Relief Pillars Grid */
|
|
.pillars-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 24px;
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
.pillar-card {
|
|
background: var(--white);
|
|
border-radius: var(--radius-md);
|
|
padding: 32px 24px;
|
|
box-shadow: var(--shadow-sm);
|
|
border: 1px solid var(--slate-200);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.pillar-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-md);
|
|
border-color: var(--gold-300);
|
|
}
|
|
|
|
.pillar-icon {
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: var(--radius-sm);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.icon-red { background: rgba(230, 57, 70, 0.12); color: var(--relief-red); }
|
|
.icon-orange { background: rgba(245, 158, 11, 0.12); color: #d97706; }
|
|
.icon-blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
|
|
.icon-gold { background: rgba(212, 175, 55, 0.15); color: #b8911f; }
|
|
|
|
.pillar-card h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: var(--primary-900);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.pillar-card p {
|
|
font-size: 0.94rem;
|
|
color: var(--slate-600);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Interactive Donation Tier Selector */
|
|
.donate-calculator {
|
|
background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
|
|
border-radius: var(--radius-lg);
|
|
padding: 44px 36px;
|
|
color: var(--white);
|
|
box-shadow: var(--shadow-xl);
|
|
border: 1px solid rgba(212, 175, 55, 0.3);
|
|
text-align: center;
|
|
}
|
|
|
|
.donate-calculator h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.85rem;
|
|
font-weight: 800;
|
|
color: var(--white);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.donate-calculator p.subtitle {
|
|
color: var(--slate-300);
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.tier-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 14px;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.tier-chip {
|
|
padding: 14px 28px;
|
|
border-radius: var(--radius-md);
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 2px solid rgba(255, 255, 255, 0.18);
|
|
color: var(--white);
|
|
font-family: var(--font-heading);
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.tier-chip:hover {
|
|
background: rgba(255, 255, 255, 0.18);
|
|
border-color: var(--gold-400);
|
|
}
|
|
|
|
.tier-chip.active {
|
|
background: var(--grad-gold);
|
|
color: var(--primary-950);
|
|
border-color: var(--gold-300);
|
|
box-shadow: var(--shadow-gold);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.tier-impact-display {
|
|
background: rgba(0, 0, 0, 0.25);
|
|
border-radius: var(--radius-md);
|
|
padding: 20px 24px;
|
|
max-width: 680px;
|
|
margin: 0 auto 30px auto;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.tier-impact-text {
|
|
font-size: 1.05rem;
|
|
color: var(--gold-300);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.mwbm-verification-note {
|
|
font-size: 0.85rem;
|
|
color: var(--slate-400);
|
|
margin-top: 18px;
|
|
}
|
|
|
|
/* About Pastor Victor */
|
|
.about-grid {
|
|
display: grid;
|
|
grid-template-columns: 0.9fr 1.1fr;
|
|
gap: 60px;
|
|
align-items: center;
|
|
}
|
|
|
|
.pastor-photo-card {
|
|
position: relative;
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-xl);
|
|
border: 4px solid var(--white);
|
|
}
|
|
|
|
.pastor-photo-card img {
|
|
width: 100%;
|
|
height: auto;
|
|
aspect-ratio: 4/5;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.pastor-photo-caption {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(to top, rgba(6, 13, 31, 0.95), transparent);
|
|
padding: 40px 24px 20px 24px;
|
|
color: var(--white);
|
|
}
|
|
|
|
.pastor-photo-caption h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.pastor-photo-caption p {
|
|
font-size: 0.85rem;
|
|
color: var(--gold-300);
|
|
}
|
|
|
|
.about-text h2 {
|
|
font-family: var(--font-heading);
|
|
font-size: clamp(2rem, 3vw, 2.7rem);
|
|
font-weight: 800;
|
|
color: var(--primary-900);
|
|
margin-bottom: 24px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.about-text p {
|
|
font-size: 1.05rem;
|
|
color: var(--slate-700);
|
|
margin-bottom: 18px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.quote-box {
|
|
margin-top: 32px;
|
|
padding: 24px 30px;
|
|
background: rgba(212, 175, 55, 0.08);
|
|
border-left: 4px solid var(--gold-500);
|
|
border-radius: 0 var(--radius-md) var(--radius-md) 0;
|
|
}
|
|
|
|
.quote-box blockquote {
|
|
font-family: var(--font-heading);
|
|
font-style: italic;
|
|
font-size: 1.12rem;
|
|
font-weight: 600;
|
|
color: var(--primary-950);
|
|
margin-bottom: 8px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.quote-author {
|
|
font-size: 0.88rem;
|
|
font-weight: 700;
|
|
color: #946f05;
|
|
}
|
|
|
|
/* Seminary Section */
|
|
.seminary-features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 30px;
|
|
}
|
|
|
|
.seminary-card {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: var(--radius-md);
|
|
padding: 36px 28px;
|
|
backdrop-filter: blur(10px);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.seminary-card:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-color: var(--gold-400);
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.seminary-card-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
background: var(--grad-gold);
|
|
border-radius: var(--radius-sm);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-950);
|
|
font-size: 22px;
|
|
margin-bottom: 22px;
|
|
box-shadow: var(--shadow-gold);
|
|
}
|
|
|
|
.seminary-card h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.35rem;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.seminary-card p {
|
|
font-size: 0.95rem;
|
|
color: var(--slate-300);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Ministries & Media Grid */
|
|
.ministries-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
|
|
gap: 28px;
|
|
}
|
|
|
|
.ministry-card {
|
|
background: var(--white);
|
|
border-radius: var(--radius-md);
|
|
padding: 36px 26px;
|
|
box-shadow: var(--shadow-sm);
|
|
border: 1px solid var(--slate-200);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.ministry-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-lg);
|
|
border-color: var(--primary-500);
|
|
}
|
|
|
|
.ministry-badge {
|
|
display: inline-block;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--primary-600);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.ministry-card h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
color: var(--primary-900);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.ministry-card p {
|
|
font-size: 0.95rem;
|
|
color: var(--slate-600);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Location & Times */
|
|
.location-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 40px;
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
padding: 48px;
|
|
box-shadow: var(--shadow-lg);
|
|
border: 1px solid var(--slate-200);
|
|
}
|
|
|
|
.location-info h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.5rem;
|
|
font-weight: 800;
|
|
color: var(--primary-900);
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.location-address {
|
|
font-size: 1.05rem;
|
|
color: var(--slate-700);
|
|
line-height: 1.6;
|
|
margin-bottom: 16px;
|
|
padding-left: 20px;
|
|
border-left: 3px solid var(--primary-500);
|
|
}
|
|
|
|
.transit-callout {
|
|
background: var(--slate-100);
|
|
padding: 12px 18px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--slate-700);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.schedule-card {
|
|
background: var(--primary-950);
|
|
border-radius: var(--radius-md);
|
|
padding: 36px 30px;
|
|
color: var(--white);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.schedule-card h4 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.35rem;
|
|
font-weight: 700;
|
|
color: var(--gold-400);
|
|
margin-bottom: 24px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.service-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 0;
|
|
border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.service-name {
|
|
font-weight: 500;
|
|
color: var(--slate-200);
|
|
}
|
|
|
|
.service-time {
|
|
font-weight: 700;
|
|
color: var(--gold-300);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
/* Giving Channel Section */
|
|
.giving-box {
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
padding: 48px;
|
|
box-shadow: var(--shadow-xl);
|
|
border: 1px solid var(--slate-200);
|
|
}
|
|
|
|
.giving-channel-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 36px;
|
|
margin-top: 36px;
|
|
}
|
|
|
|
.channel-card {
|
|
background: var(--slate-50);
|
|
border: 1px solid var(--slate-200);
|
|
border-radius: var(--radius-md);
|
|
padding: 32px 26px;
|
|
}
|
|
|
|
.channel-card h4 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: var(--primary-900);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.channel-card p, .channel-card li {
|
|
font-size: 0.94rem;
|
|
color: var(--slate-700);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.channel-card ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.channel-card li {
|
|
padding-left: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.channel-card li::before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #10b981;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.memo-highlight {
|
|
background: rgba(212, 175, 55, 0.2);
|
|
color: #855f00;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.contact-daughter-banner {
|
|
background: var(--primary-900);
|
|
color: var(--white);
|
|
padding: 20px 28px;
|
|
border-radius: var(--radius-md);
|
|
margin-top: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
/* Contact Form */
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.1fr 0.9fr;
|
|
gap: 48px;
|
|
}
|
|
|
|
.contact-form-card {
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
padding: 44px;
|
|
box-shadow: var(--shadow-lg);
|
|
border: 1px solid var(--slate-200);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
font-size: 0.88rem;
|
|
font-weight: 600;
|
|
color: var(--slate-700);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.form-input, .form-select, .form-textarea {
|
|
width: 100%;
|
|
padding: 13px 18px;
|
|
border: 1px solid var(--slate-300);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--white);
|
|
color: var(--slate-900);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.form-input:focus, .form-select:focus, .form-textarea:focus {
|
|
border-color: var(--primary-600);
|
|
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
|
|
}
|
|
|
|
.form-textarea {
|
|
resize: vertical;
|
|
min-height: 120px;
|
|
}
|
|
|
|
.contact-sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
|
|
.contact-info-card {
|
|
background: var(--slate-100);
|
|
border-radius: var(--radius-md);
|
|
padding: 30px 24px;
|
|
border: 1px solid var(--slate-200);
|
|
}
|
|
|
|
.contact-info-card h4 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.15rem;
|
|
font-weight: 700;
|
|
color: var(--primary-900);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.contact-info-card p {
|
|
font-size: 0.92rem;
|
|
color: var(--slate-600);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Modal */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(6, 13, 31, 0.75);
|
|
backdrop-filter: blur(8px);
|
|
z-index: 2000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.modal-overlay.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.modal-box {
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
max-width: 580px;
|
|
width: 100%;
|
|
padding: 40px;
|
|
box-shadow: var(--shadow-xl);
|
|
position: relative;
|
|
transform: scale(0.95);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.modal-overlay.active .modal-box {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.modal-close-btn {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
background: none;
|
|
font-size: 24px;
|
|
color: var(--slate-400);
|
|
cursor: pointer;
|
|
line-height: 1;
|
|
}
|
|
|
|
.modal-close-btn:hover {
|
|
color: var(--slate-800);
|
|
}
|
|
|
|
/* Footer */
|
|
.site-footer {
|
|
background-color: var(--primary-950);
|
|
color: var(--slate-400);
|
|
padding: 80px 0 36px 0;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.5fr 1fr 1fr;
|
|
gap: 48px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.footer-brand h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.35rem;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.footer-brand p {
|
|
font-size: 0.94rem;
|
|
line-height: 1.65;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.footer-links h4 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.05rem;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.footer-links ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-links li {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--gold-400);
|
|
}
|
|
|
|
.scripture-banner {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: var(--radius-md);
|
|
padding: 24px;
|
|
text-align: center;
|
|
font-style: italic;
|
|
font-size: 0.95rem;
|
|
color: var(--gold-300);
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
font-size: 0.82rem;
|
|
padding-top: 30px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
color: var(--slate-500);
|
|
}
|
|
|
|
/* Responsive Breakpoints */
|
|
@media (max-width: 1024px) {
|
|
.relief-card-wrapper {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.about-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 40px;
|
|
}
|
|
.location-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.contact-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.giving-channel-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.footer-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 36px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.nav-links {
|
|
position: fixed;
|
|
top: 80px;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: calc(100vh - 80px);
|
|
background: var(--primary-950);
|
|
flex-direction: column;
|
|
padding: 36px 24px;
|
|
gap: 20px;
|
|
transition: var(--transition);
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.nav-links.open {
|
|
left: 0;
|
|
}
|
|
|
|
.mobile-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.nav-actions .btn-relief {
|
|
display: none;
|
|
}
|
|
|
|
.section {
|
|
padding: 64px 0;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 2.2rem;
|
|
}
|
|
|
|
.hero-stats {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.relief-card-wrapper {
|
|
padding: 24px 18px;
|
|
}
|
|
|
|
.donate-calculator {
|
|
padding: 30px 20px;
|
|
}
|
|
}
|
|
|
|
/* =========================================================
|
|
STORYBRAND (SB7) FRAMEWORK STYLES
|
|
========================================================= */
|
|
|
|
/* SB7: The Problem Section (External, Internal, Philosophical) */
|
|
.sb7-problem-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 28px;
|
|
margin-top: 48px;
|
|
}
|
|
|
|
.sb7-problem-card {
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
padding: 36px 28px;
|
|
box-shadow: var(--shadow-md);
|
|
border: 1px solid var(--slate-200);
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.sb7-problem-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.sb7-problem-tag {
|
|
display: inline-block;
|
|
font-size: 0.76rem;
|
|
font-weight: 800;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
padding: 4px 12px;
|
|
border-radius: var(--radius-full);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.tag-external { background: rgba(230, 57, 70, 0.12); color: var(--relief-red); }
|
|
.tag-internal { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
|
|
.tag-philosophical { background: rgba(212, 175, 55, 0.18); color: #b8911f; }
|
|
|
|
.sb7-problem-card h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.32rem;
|
|
font-weight: 700;
|
|
color: var(--primary-950);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.sb7-problem-card p {
|
|
font-size: 0.95rem;
|
|
color: var(--slate-600);
|
|
line-height: 1.65;
|
|
}
|
|
|
|
/* SB7: The 3-Step Process Plan */
|
|
.sb7-plan-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
position: relative;
|
|
}
|
|
|
|
.sb7-step-card {
|
|
background: var(--white);
|
|
border-radius: var(--radius-lg);
|
|
padding: 40px 30px;
|
|
box-shadow: var(--shadow-md);
|
|
border: 2px solid var(--slate-200);
|
|
position: relative;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.sb7-step-card:hover {
|
|
border-color: var(--gold-400);
|
|
box-shadow: var(--shadow-lg);
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.sb7-step-num {
|
|
font-family: var(--font-heading);
|
|
font-size: 2.8rem;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
background: var(--grad-gold);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.sb7-step-card h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.35rem;
|
|
font-weight: 700;
|
|
color: var(--primary-900);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.sb7-step-card p {
|
|
font-size: 0.95rem;
|
|
color: var(--slate-600);
|
|
line-height: 1.65;
|
|
}
|
|
|
|
/* SB7: The Guide (Authority Checklist) */
|
|
.sb7-authority-list {
|
|
list-style: none;
|
|
margin-top: 20px;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 12px;
|
|
}
|
|
|
|
.sb7-authority-list li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: 0.98rem;
|
|
font-weight: 600;
|
|
color: var(--primary-950);
|
|
}
|
|
|
|
.sb7-authority-list li span.check-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
background: rgba(16, 185, 129, 0.15);
|
|
color: #10b981;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 13px;
|
|
font-weight: 900;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* SB7: The Stakes (Failure Avoidance) */
|
|
.sb7-stakes-section {
|
|
background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%);
|
|
border-top: 1px solid #fecaca;
|
|
border-bottom: 1px solid #fecaca;
|
|
}
|
|
|
|
.sb7-stakes-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 26px;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.sb7-stake-item {
|
|
background: var(--white);
|
|
border-radius: var(--radius-md);
|
|
padding: 30px 24px;
|
|
border-left: 4px solid var(--relief-red);
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.sb7-stake-item h4 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.18rem;
|
|
font-weight: 700;
|
|
color: #991b1b;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.sb7-stake-item p {
|
|
font-size: 0.92rem;
|
|
color: #7f1d1d;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* SB7: The Transformation (Before & After) */
|
|
.sb7-trans-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 32px;
|
|
margin-top: 48px;
|
|
}
|
|
|
|
.sb7-trans-box {
|
|
border-radius: var(--radius-lg);
|
|
padding: 40px 32px;
|
|
position: relative;
|
|
}
|
|
|
|
.sb7-trans-before {
|
|
background: var(--slate-100);
|
|
border: 1px solid var(--slate-300);
|
|
}
|
|
|
|
.sb7-trans-after {
|
|
background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-950) 100%);
|
|
color: var(--white);
|
|
border: 2px solid var(--gold-400);
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
|
|
.sb7-trans-badge {
|
|
display: inline-block;
|
|
font-size: 0.78rem;
|
|
font-weight: 800;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
padding: 5px 14px;
|
|
border-radius: var(--radius-full);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.badge-before { background: rgba(100, 116, 139, 0.2); color: var(--slate-700); }
|
|
.badge-after { background: var(--grad-gold); color: var(--primary-950); }
|
|
|
|
.sb7-trans-box h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.45rem;
|
|
font-weight: 800;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.sb7-trans-box p {
|
|
font-size: 1.05rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.sb7-trans-before p { color: var(--slate-600); }
|
|
.sb7-trans-after p { color: var(--slate-200); }
|
|
|
|
/* SB7: Transitional CTA Banner */
|
|
.sb7-transitional-bar {
|
|
background: linear-gradient(90deg, #101f42 0%, #172d5e 100%);
|
|
border: 1px solid rgba(212, 175, 55, 0.3);
|
|
border-radius: var(--radius-lg);
|
|
padding: 36px 40px;
|
|
margin: 60px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 30px;
|
|
flex-wrap: wrap;
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.sb7-transitional-bar h3 {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.sb7-transitional-bar p {
|
|
font-size: 0.95rem;
|
|
color: var(--slate-300);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.sb7-trans-wrapper {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.sb7-transitional-bar {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding: 30px 20px;
|
|
}
|
|
}
|
|
|