Refine homepage sections and contact card design
This commit is contained in:
+244
-29
@@ -267,6 +267,119 @@
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* ── Episode List ── */
|
||||
.episode-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.episode-card {
|
||||
display: block;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border: 1px solid rgba(201, 168, 76, 0.2);
|
||||
border-left: 3px solid var(--brand-gold);
|
||||
border-radius: 10px;
|
||||
padding: 1.1rem 1.4rem;
|
||||
text-decoration: none;
|
||||
transition: background 180ms, border-color 180ms, transform 180ms;
|
||||
}
|
||||
|
||||
.episode-card:hover {
|
||||
background: rgba(201, 168, 76, 0.07);
|
||||
border-color: rgba(201, 168, 76, 0.45);
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
.episode-card-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.85rem;
|
||||
margin-bottom: 0.35rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.episode-number {
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
color: var(--brand-gold);
|
||||
}
|
||||
|
||||
.episode-date,
|
||||
.episode-duration {
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.78rem;
|
||||
color: var(--brand-muted);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.episode-date::before {
|
||||
content: '·';
|
||||
margin-right: 0.85rem;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.episode-duration::before {
|
||||
content: '·';
|
||||
margin-right: 0.85rem;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.episode-title {
|
||||
font-family: var(--brand-font-heading);
|
||||
font-size: 1.05rem;
|
||||
font-weight: 600;
|
||||
color: var(--brand-warm-white);
|
||||
margin: 0 0 0.35rem;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.episode-desc {
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.88rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.55;
|
||||
color: var(--brand-muted);
|
||||
margin: 0 0 0.6rem;
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.episode-listen-cta {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.35rem;
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--brand-gold);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.episode-list-loading {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.episode-skeleton {
|
||||
height: 100px;
|
||||
border-radius: 10px;
|
||||
background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: skeleton-shimmer 1.4s infinite;
|
||||
}
|
||||
|
||||
@keyframes skeleton-shimmer {
|
||||
0% { background-position: 200% 0; }
|
||||
100% { background-position: -200% 0; }
|
||||
}
|
||||
|
||||
.platform-buttons {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
@@ -607,10 +720,11 @@
|
||||
|
||||
.qr-frame {
|
||||
display: inline-block;
|
||||
padding: 12px;
|
||||
background: #f5eed8;
|
||||
border-radius: 8px;
|
||||
padding: 16px 18px;
|
||||
background: #ffffff;
|
||||
border-radius: 24px;
|
||||
position: relative;
|
||||
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
|
||||
}
|
||||
|
||||
.qr-code {
|
||||
@@ -734,28 +848,120 @@
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.contact-copy .section-heading {
|
||||
text-align: left;
|
||||
margin-bottom: 1rem;
|
||||
.contact-card {
|
||||
background: #111111;
|
||||
border: 1px solid rgba(201, 168, 76, 0.2);
|
||||
border-radius: 16px;
|
||||
padding: 2.3rem;
|
||||
max-width: 500px;
|
||||
}
|
||||
|
||||
.contact-copy p {
|
||||
.contact-card .eyebrow {
|
||||
margin: 0 0 0.45rem;
|
||||
}
|
||||
|
||||
.contact-card h2 {
|
||||
margin: 0 0 1.75rem;
|
||||
font-family: var(--brand-font-heading);
|
||||
color: var(--brand-warm-white);
|
||||
font-size: clamp(1.45rem, 2vw, 1.9rem);
|
||||
line-height: 1.3;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.contact-profile {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
|
||||
.contact-profile-photo {
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
border-radius: 999px;
|
||||
object-fit: cover;
|
||||
object-position: top;
|
||||
border: 2px solid var(--brand-gold);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.contact-profile-name {
|
||||
margin: 0 0 0.15rem;
|
||||
font-family: var(--brand-font-body);
|
||||
font-weight: 300;
|
||||
font-size: 1.08rem;
|
||||
line-height: 1.7;
|
||||
color: var(--brand-muted);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.contact-copy .contact-highlight {
|
||||
font-size: clamp(1.25rem, 2.2vw, 1.65rem);
|
||||
line-height: 1.35;
|
||||
font-size: 1.45rem;
|
||||
font-weight: 600;
|
||||
color: var(--brand-warm-white);
|
||||
margin: 0 0 0.6rem;
|
||||
text-wrap: balance;
|
||||
}
|
||||
|
||||
.contact-profile-role {
|
||||
margin: 0;
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.95rem;
|
||||
color: var(--brand-gold);
|
||||
}
|
||||
|
||||
.contact-quote {
|
||||
border-left: 2px solid var(--brand-gold);
|
||||
padding-left: 1rem;
|
||||
margin: 0 0 1.75rem;
|
||||
}
|
||||
|
||||
.contact-quote p {
|
||||
margin: 0;
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 1.35rem;
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
color: #d4c4a0;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.contact-intro {
|
||||
margin: 0 0 1rem;
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 1rem;
|
||||
line-height: 1.6;
|
||||
color: #9a9994;
|
||||
}
|
||||
|
||||
.contact-points {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.contact-point {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.65rem;
|
||||
color: #8f8e89;
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
|
||||
.contact-point svg {
|
||||
color: var(--brand-gold);
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.contact-scripture {
|
||||
margin-top: 1.75rem;
|
||||
padding-top: 1.5rem;
|
||||
border-top: 1px solid #2c2116;
|
||||
}
|
||||
|
||||
.contact-scripture p {
|
||||
margin: 0;
|
||||
font-family: var(--brand-font-body);
|
||||
font-size: 0.88rem;
|
||||
font-style: italic;
|
||||
line-height: 1.6;
|
||||
color: #6d6b66;
|
||||
}
|
||||
|
||||
.contact-scripture-ref {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
@@ -1111,19 +1317,22 @@
|
||||
|
||||
.guide-inner {
|
||||
display: grid;
|
||||
grid-template-columns: 100px 1fr;
|
||||
grid-template-columns: 160px 1fr;
|
||||
gap: 3rem;
|
||||
align-items: center;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.guide-icon {
|
||||
width: 100px;
|
||||
.guide-cover-art {
|
||||
flex-shrink: 0;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.guide-icon svg {
|
||||
.guide-cover-img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
|
||||
display: block;
|
||||
}
|
||||
|
||||
.guide-text h2 {
|
||||
@@ -2290,8 +2499,9 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.guide-icon {
|
||||
.guide-cover-art {
|
||||
margin: 0 auto;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.study-download-grid {
|
||||
@@ -2319,7 +2529,7 @@
|
||||
|
||||
.contact-inner {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.chatbot-feature-inner {
|
||||
@@ -2335,8 +2545,13 @@
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.contact-copy .section-heading {
|
||||
text-align: center;
|
||||
.contact-card {
|
||||
max-width: 100%;
|
||||
padding: 1.45rem;
|
||||
}
|
||||
|
||||
.contact-quote p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.header-ornament {
|
||||
|
||||
Reference in New Issue
Block a user