/* ═══════════════════════════════════════════════════════════════════════
   CINEMATIC THEME
   — Pure black, cinematic, massive condensed uppercase type
   — ChurchLab Cinematic theme
   Fonts: Barlow Condensed (display) + Inter (body)
   Colors: #000 bg · #fff text · #E8253C red accent
═══════════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
    --elv-black:      #000000;
    --elv-white:      #ffffff;
    --elv-red:        #E8253C;
    --elv-red-dark:   #c41e30;
    --elv-gray-900:   #0a0a0a;
    --elv-gray-800:   #141414;
    --elv-gray-700:   #1e1e1e;
    --elv-gray-500:   #555555;
    --elv-gray-300:   #999999;
    --elv-font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --elv-font-body:    'Barlow', 'Arial', sans-serif;
    --elv-nav-height:   72px;
}

/* ── Global ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--elv-black);
    color: var(--elv-white);
    font-family: var(--elv-font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────────────────────── */
.elv-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--elv-nav-height);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
    transition: background 0.3s ease;
}
.elv-nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
}
.elv-nav-logo {
    font-family: var(--elv-font-display);
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--elv-white);
    text-decoration: none;
}
.elv-nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0; padding: 0;
}
.elv-nav-links a {
    font-family: var(--elv-font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.elv-nav-links a:hover { color: var(--elv-white); }
.elv-nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}
.elv-btn-nav {
    font-family: var(--elv-font-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}
.elv-btn-nav-ghost {
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}
.elv-btn-nav-ghost:hover { border-color: var(--elv-white); color: var(--elv-white); }
.elv-btn-nav-red {
    background: var(--elv-red);
    color: var(--elv-white);
}
.elv-btn-nav-red:hover { background: var(--elv-red-dark); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.elv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--elv-black);
}
.elv-hero-media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
}
.elv-hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.elv-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.1) 100%
    );
}
.elv-hero-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--elv-nav-height) + 60px) 60px 80px;
    max-width: 1200px;
    width: 100%;
}
.elv-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.elv-hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--elv-red);
}
.elv-hero-eyebrow-text {
    font-family: var(--elv-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--elv-red);
}
.elv-hero-title {
    font-family: var(--elv-font-display);
    font-weight: 900;
    font-size: clamp(4rem, 13vw, 11rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--elv-white);
    margin: 0 0 32px;
}
.elv-hero-title .accent { color: var(--elv-red); }
.elv-hero-sub {
    font-family: var(--elv-font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    max-width: 440px;
    margin: 0 0 40px;
    line-height: 1.7;
}
.elv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.elv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--elv-font-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}
.elv-btn-primary {
    background: var(--elv-red);
    color: var(--elv-white);
}
.elv-btn-primary:hover {
    background: var(--elv-red-dark);
    transform: translateY(-1px);
}
.elv-btn-outline {
    background: transparent;
    color: var(--elv-white);
    border: 1px solid rgba(255,255,255,0.3);
}
.elv-btn-outline:hover {
    border-color: var(--elv-white);
    background: rgba(255,255,255,0.05);
}
.elv-btn-white {
    background: var(--elv-white);
    color: var(--elv-black);
}
.elv-btn-white:hover {
    background: rgba(255,255,255,0.9);
}

/* ── SECTIONS ────────────────────────────────────────────────────────── */
.elv-section { padding: 100px 60px; }
.elv-section-sm { padding: 60px 60px; }
.elv-container { max-width: 1200px; margin: 0 auto; }

.elv-section-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}
.elv-section-label-line {
    width: 40px; height: 1px;
    background: var(--elv-red);
}
.elv-section-label-text {
    font-family: var(--elv-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--elv-red);
}

.elv-section-title {
    font-family: var(--elv-font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--elv-white);
    margin: 0 0 24px;
}

/* ── SERMON SPOTLIGHT ─────────────────────────────────────────────── */
.elv-sermon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
}
.elv-sermon-thumb {
    aspect-ratio: 16/9;
    background: var(--elv-gray-800);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.elv-play-btn {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.elv-sermon-thumb:hover .elv-play-btn {
    background: var(--elv-red);
    border-color: var(--elv-red);
    transform: scale(1.08);
}
.elv-sermon-info {
    background: var(--elv-gray-900);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── SCRIPTURE BAND ──────────────────────────────────────────────────── */
.elv-scripture-band {
    background: var(--elv-red);
    padding: 80px 60px;
    text-align: center;
}
.elv-scripture-text {
    font-family: var(--elv-font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4.5rem);
    text-transform: uppercase;
    line-height: 1;
    color: var(--elv-white);
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}
.elv-scripture-ref {
    font-family: var(--elv-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.6);
}

/* ── TESTIMONIES ─────────────────────────────────────────────────── */
.elv-testimony-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
}
.elv-testimony-card {
    background: var(--elv-gray-900);
    padding: 48px 40px;
    transition: background 0.3s;
}
.elv-testimony-card:hover { background: rgba(255,255,255,0.03); }
.elv-testimony-quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 0.5;
    color: rgba(232,37,60,0.2);
    margin-bottom: 24px;
    display: block;
    user-select: none;
}
.elv-testimony-text {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin: 0 0 40px;
}
.elv-testimony-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.elv-testimony-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--elv-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--elv-white);
    flex-shrink: 0;
}
.elv-testimony-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--elv-white);
    margin: 0;
}
.elv-testimony-location {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin: 2px 0 0;
}

/* ── GIVE CTA ────────────────────────────────────────────────────────── */
.elv-give-band {
    background: var(--elv-gray-900);
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.elv-footer {
    background: var(--elv-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.elv-footer-logo {
    font-family: var(--elv-font-display);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--elv-white);
}
.elv-footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.elv-footer-links a {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.elv-footer-links a:hover { color: var(--elv-white); }
.elv-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────────── */
.elv-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.elv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.elv-reveal-delay-1 { transition-delay: 0.1s; }
.elv-reveal-delay-2 { transition-delay: 0.2s; }
.elv-reveal-delay-3 { transition-delay: 0.3s; }

/* ── VERTICAL ACCENT LINE ────────────────────────────────────────────── */
.elv-vert-line {
    position: absolute;
    left: 60px; top: 0; bottom: 0;
    width: 1px;
    background: var(--elv-red);
    opacity: 0.3;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .elv-sermon-grid { grid-template-columns: 1fr; }
    .elv-testimony-grid { grid-template-columns: 1fr; }
    .elv-section, .elv-scripture-band, .elv-footer { padding-left: 24px; padding-right: 24px; }
    .elv-hero-content { padding-left: 24px; padding-right: 24px; }
    .elv-nav { padding: 0 24px; }
    .elv-nav-links { display: none; }
    .elv-vert-line { display: none; }
}
@media (max-width: 640px) {
    .elv-section { padding-top: 60px; padding-bottom: 60px; }
    .elv-scripture-band { padding-top: 48px; padding-bottom: 48px; }
}
