/* ═══════════════════════════════════════════════════════════════════════
   ANTHEM THEME
   — Clean white, editorial, warm gold accents, "Welcome Home"
   — ChurchLab Anthem theme
   Fonts: DM Serif Display (headings) + DM Sans (body)
   Colors: #fff bg · #111 text · #F0B429 gold · #1A1A1A dark
═══════════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
    --hls-white:      #ffffff;
    --hls-black:      #111111;
    --hls-gray-900:   #1a1a1a;
    --hls-gray-800:   #2c2c2c;
    --hls-gray-600:   #555555;
    --hls-gray-200:   #e8e8e8;
    --hls-gray-100:   #f5f5f5;
    --hls-gray-50:    #fafafa;
    --hls-gold:       #F0B429;
    --hls-gold-dark:  #D4910A;
    --hls-gold-light: #FFF3CC;
    --hls-font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --hls-font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --hls-nav-height:   72px;
    --hls-radius:       6px;
}

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

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

/* ── NAV ─────────────────────────────────────────────────────────────── */
.hls-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--hls-nav-height);
    background: var(--hls-white);
    border-bottom: 1px solid var(--hls-gray-200);
    display: flex;
    align-items: center;
    padding: 0 48px;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}
.hls-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.hls-nav-logo img,
.hls-nav-logo-text {
    font-family: var(--hls-font-display);
    font-size: 22px;
    color: var(--hls-black);
    text-decoration: none;
}
.hls-nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0; padding: 0;
}
.hls-nav-links a {
    font-family: var(--hls-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--hls-gray-600);
    text-decoration: none;
    transition: color 0.2s;
}
.hls-nav-links a:hover { color: var(--hls-black); }
.hls-nav-cta { display: flex; gap: 12px; align-items: center; }
.hls-btn-nav {
    font-family: var(--hls-font-body);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.hls-btn-nav-ghost {
    color: var(--hls-gray-600);
    border: 1.5px solid var(--hls-gray-200);
}
.hls-btn-nav-ghost:hover { border-color: var(--hls-black); color: var(--hls-black); }
.hls-btn-nav-gold {
    background: var(--hls-gold);
    color: var(--hls-black);
    font-weight: 700;
}
.hls-btn-nav-gold:hover { background: var(--hls-gold-dark); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hls-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hls-gray-900);
}
.hls-hero-media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hls-hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hls-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17,17,17,0.85) 0%,
        rgba(17,17,17,0.4) 60%,
        rgba(17,17,17,0.65) 100%
    );
}
.hls-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 1280px;
    width: 100%;
}
.hls-hero-overline {
    font-family: var(--hls-font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
    display: block;
}
.hls-hero-title {
    font-family: var(--hls-font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 1.05;
    color: var(--hls-white);
    margin: 0 0 28px;
    max-width: 700px;
}
.hls-hero-title em {
    font-style: italic;
    color: var(--hls-gold);
}
.hls-hero-sub {
    font-family: var(--hls-font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    margin: 0 0 44px;
    line-height: 1.7;
}
.hls-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── SERVICE TIMES TICKER ─────────────────────────────────────────── */
.hls-times-strip {
    background: var(--hls-gold);
    padding: 18px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow-x: auto;
    scrollbar-width: none;
}
.hls-times-strip::-webkit-scrollbar { display: none; }
.hls-times-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.hls-times-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hls-black);
    opacity: 0.5;
    flex-shrink: 0;
}
.hls-times-label {
    font-family: var(--hls-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--hls-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.hls-times-value {
    font-family: var(--hls-font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(0,0,0,0.65);
    white-space: nowrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.hls-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hls-font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}
.hls-btn-gold {
    background: var(--hls-gold);
    color: var(--hls-black);
}
.hls-btn-gold:hover { background: var(--hls-gold-dark); transform: translateY(-1px); }
.hls-btn-dark {
    background: var(--hls-black);
    color: var(--hls-white);
}
.hls-btn-dark:hover { background: var(--hls-gray-800); transform: translateY(-1px); }
.hls-btn-outline-dark {
    background: transparent;
    color: var(--hls-black);
    border: 1.5px solid var(--hls-black);
}
.hls-btn-outline-dark:hover { background: var(--hls-black); color: var(--hls-white); }
.hls-btn-outline-white {
    background: transparent;
    color: var(--hls-white);
    border: 1.5px solid rgba(255,255,255,0.45);
}
.hls-btn-outline-white:hover { border-color: var(--hls-white); background: rgba(255,255,255,0.08); }

/* ── SECTIONS ─────────────────────────────────────────────────────── */
.hls-section { padding: 100px 80px; }
.hls-section-dark {
    background: var(--hls-gray-900);
    color: var(--hls-white);
}
.hls-section-warm { background: var(--hls-gold-light); }
.hls-section-gray { background: var(--hls-gray-50); }
.hls-container { max-width: 1280px; margin: 0 auto; }

.hls-section-heading {
    font-family: var(--hls-font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 0 0 20px;
}
.hls-section-heading em { font-style: italic; color: var(--hls-gold); }
.hls-section-dark .hls-section-heading { color: var(--hls-white); }

.hls-section-body {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--hls-gray-600);
    max-width: 540px;
}
.hls-section-dark .hls-section-body { color: rgba(255,255,255,0.6); }

.hls-overline {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--hls-gold-dark);
    margin-bottom: 16px;
    display: block;
}
.hls-section-dark .hls-overline { color: var(--hls-gold); }

/* ── SERMON / MEDIA CARDS ─────────────────────────────────────────── */
.hls-sermon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hls-sermon-card {
    background: var(--hls-white);
    border-radius: var(--hls-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.hls-sermon-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.hls-sermon-thumb {
    aspect-ratio: 16/9;
    background: var(--hls-gray-200);
    position: relative;
    overflow: hidden;
}
.hls-sermon-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hls-sermon-body { padding: 24px; }
.hls-sermon-series {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hls-gold-dark);
    margin-bottom: 8px;
    display: block;
}
.hls-sermon-title {
    font-family: var(--hls-font-display);
    font-size: 22px;
    line-height: 1.2;
    color: var(--hls-black);
    margin: 0 0 12px;
}
.hls-sermon-meta {
    font-size: 13px;
    color: var(--hls-gray-600);
}

/* ── EVENTS ─────────────────────────────────────────────────────── */
.hls-event-list { display: flex; flex-direction: column; gap: 0; }
.hls-event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--hls-gray-200);
}
.hls-event-date-box {
    text-align: center;
    background: var(--hls-gold-light);
    border-radius: 8px;
    padding: 10px;
}
.hls-event-month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hls-gold-dark);
}
.hls-event-day {
    font-family: var(--hls-font-display);
    font-size: 32px;
    color: var(--hls-black);
    line-height: 1;
}
.hls-event-title {
    font-family: var(--hls-font-display);
    font-size: 20px;
    color: var(--hls-black);
    margin: 0 0 4px;
}
.hls-event-desc {
    font-size: 14px;
    color: var(--hls-gray-600);
    margin: 0;
}

/* ── SCRIPTURE BAND ──────────────────────────────────────────────── */
.hls-scripture {
    background: var(--hls-gray-900);
    padding: 100px 80px;
    text-align: center;
}
.hls-scripture-text {
    font-family: var(--hls-font-display);
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.2;
    color: var(--hls-white);
    max-width: 900px;
    margin: 0 auto 24px;
}
.hls-scripture-ref {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--hls-gold);
}

/* ── FOUNDER / ABOUT ─────────────────────────────────────────────── */
.hls-founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hls-founder-img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--hls-gray-200);
}
.hls-founder-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── TESTIMONIES ─────────────────────────────────────────────────── */
.hls-testimony-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hls-testimony-card {
    background: var(--hls-gray-50);
    border-radius: var(--hls-radius);
    padding: 40px 32px;
    border: 1px solid var(--hls-gray-200);
    transition: box-shadow 0.3s;
}
.hls-testimony-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.hls-testimony-stars { color: var(--hls-gold); font-size: 18px; margin-bottom: 16px; }
.hls-testimony-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--hls-gray-600);
    margin: 0 0 24px;
}
.hls-testimony-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--hls-black);
}
.hls-testimony-loc {
    font-size: 12px;
    color: var(--hls-gray-600);
    margin-top: 2px;
}

/* ── GIVE CTA ────────────────────────────────────────────────────── */
.hls-give-band {
    background: var(--hls-gold);
    padding: 80px;
    text-align: center;
}
.hls-give-band h2 {
    font-family: var(--hls-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--hls-black);
    margin: 0 0 16px;
}
.hls-give-band p {
    font-size: 17px;
    color: rgba(0,0,0,0.65);
    margin: 0 0 36px;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.hls-footer {
    background: var(--hls-white);
    border-top: 1px solid var(--hls-gray-200);
    padding: 48px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.hls-footer-logo {
    font-family: var(--hls-font-display);
    font-size: 20px;
    color: var(--hls-black);
    text-decoration: none;
}
.hls-footer-links a {
    font-size: 13px;
    color: var(--hls-gray-600);
    text-decoration: none;
    margin-right: 28px;
    transition: color 0.2s;
}
.hls-footer-links a:hover { color: var(--hls-black); }
.hls-footer-copy { font-size: 12px; color: var(--hls-gray-600); }

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

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hls-section { padding-left: 32px; padding-right: 32px; }
    .hls-nav { padding: 0 24px; }
    .hls-nav-links { display: none; }
    .hls-sermon-grid { grid-template-columns: 1fr 1fr; }
    .hls-testimony-grid { grid-template-columns: 1fr; }
    .hls-founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .hls-hero-content { padding: 0 32px; }
    .hls-times-strip { padding: 16px 24px; }
    .hls-give-band { padding: 60px 32px; }
    .hls-scripture { padding: 60px 32px; }
    .hls-footer { padding: 40px 32px; }
}
@media (max-width: 640px) {
    .hls-sermon-grid { grid-template-columns: 1fr; }
}
