/* ═══════════════════════════════════════════════════════════════════════
   SUMMIT THEME
   — Bright, family-friendly, bold blue, welcoming & community-focused
   — ChurchLab Summit theme
   Fonts: Nunito (rounded, friendly) + Nunito Sans (body)
   Colors: #003087 blue · #FF6B35 orange CTA · #fff background
═══════════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,600;6..12,700;6..12,800&display=swap');

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
    --hgh-blue:        #003087;
    --hgh-blue-mid:    #1a4fad;
    --hgh-blue-light:  #e8f0fc;
    --hgh-orange:      #FF6B35;
    --hgh-orange-dark: #e5561f;
    --hgh-yellow:      #FFD166;
    --hgh-green:       #06D6A0;
    --hgh-white:       #ffffff;
    --hgh-black:       #0d0d0d;
    --hgh-gray-900:    #1a1a2e;
    --hgh-gray-700:    #374151;
    --hgh-gray-500:    #6B7280;
    --hgh-gray-300:    #D1D5DB;
    --hgh-gray-100:    #F3F4F6;
    --hgh-gray-50:     #F9FAFB;
    --hgh-font-heading: 'Nunito', 'Arial Rounded MT Bold', sans-serif;
    --hgh-font-body:    'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
    --hgh-nav-height:   70px;
    --hgh-radius:       12px;
    --hgh-radius-lg:    20px;
}

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

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

/* ── NAV ─────────────────────────────────────────────────────────────── */
.hgh-nav {
    position: sticky;
    top: 0; z-index: 100;
    height: var(--hgh-nav-height);
    background: var(--hgh-white);
    box-shadow: 0 1px 0 var(--hgh-gray-300);
    display: flex;
    align-items: center;
    padding: 0 48px;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}
.hgh-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.hgh-nav-logo {
    font-family: var(--hgh-font-heading);
    font-weight: 900;
    font-size: 20px;
    color: var(--hgh-blue);
    text-decoration: none;
}
.hgh-nav-links {
    display: flex; gap: 28px;
    list-style: none; margin: 0; padding: 0;
}
.hgh-nav-links a {
    font-family: var(--hgh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--hgh-gray-700);
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.hgh-nav-links a:hover { color: var(--hgh-blue); border-bottom-color: var(--hgh-blue); }
.hgh-nav-cta { display: flex; gap: 10px; align-items: center; }
.hgh-btn-nav {
    font-family: var(--hgh-font-heading);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: var(--hgh-radius);
    text-decoration: none;
    transition: all 0.2s;
}
.hgh-btn-nav-ghost {
    color: var(--hgh-blue);
    border: 2px solid var(--hgh-blue);
}
.hgh-btn-nav-ghost:hover { background: var(--hgh-blue); color: var(--hgh-white); }
.hgh-btn-nav-orange {
    background: var(--hgh-orange);
    color: var(--hgh-white);
}
.hgh-btn-nav-orange:hover { background: var(--hgh-orange-dark); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hgh-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--hgh-blue);
}
.hgh-hero-media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hgh-hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.hgh-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,48,135,0.92) 0%,
        rgba(0,48,135,0.6) 50%,
        rgba(0,48,135,0.3) 100%
    );
}
.hgh-hero-content {
    position: relative; z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px;
    max-width: 1280px;
    width: 100%;
}
.hgh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 28px;
    width: fit-content;
}
.hgh-hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hgh-yellow);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.hgh-hero-badge-text {
    font-family: var(--hgh-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hgh-white);
}
.hgh-hero-title {
    font-family: var(--hgh-font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    color: var(--hgh-white);
    margin: 0 0 24px;
    max-width: 680px;
}
.hgh-hero-title .highlight {
    position: relative;
    color: var(--hgh-yellow);
}
.hgh-hero-sub {
    font-family: var(--hgh-font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 0 44px;
    line-height: 1.7;
}
.hgh-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── SERVICE TIMES STRIP ─────────────────────────────────────────── */
.hgh-times-strip {
    background: var(--hgh-white);
    border-top: 4px solid var(--hgh-orange);
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--hgh-gray-200);
}
.hgh-times-item {
    padding: 24px 20px;
    border-right: 1px solid var(--hgh-gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
}
.hgh-times-item:last-child { border-right: none; }
.hgh-times-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--hgh-blue-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hgh-times-icon svg { color: var(--hgh-blue); }
.hgh-times-name {
    font-family: var(--hgh-font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--hgh-black);
    margin: 0 0 2px;
}
.hgh-times-time {
    font-size: 13px;
    color: var(--hgh-gray-500);
    margin: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.hgh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hgh-font-heading);
    font-weight: 800;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: var(--hgh-radius);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}
.hgh-btn-orange {
    background: var(--hgh-orange);
    color: var(--hgh-white);
}
.hgh-btn-orange:hover { background: var(--hgh-orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.35); }
.hgh-btn-blue {
    background: var(--hgh-blue);
    color: var(--hgh-white);
}
.hgh-btn-blue:hover { background: var(--hgh-blue-mid); transform: translateY(-2px); }
.hgh-btn-white {
    background: var(--hgh-white);
    color: var(--hgh-blue);
}
.hgh-btn-white:hover { background: var(--hgh-gray-100); }
.hgh-btn-outline-white {
    background: transparent;
    color: var(--hgh-white);
    border: 2px solid rgba(255,255,255,0.5);
}
.hgh-btn-outline-white:hover { border-color: var(--hgh-white); background: rgba(255,255,255,0.1); }

/* ── SECTIONS ─────────────────────────────────────────────────────── */
.hgh-section { padding: 90px 80px; }
.hgh-section-blue { background: var(--hgh-blue); color: var(--hgh-white); }
.hgh-section-light { background: var(--hgh-gray-50); }
.hgh-container { max-width: 1280px; margin: 0 auto; }

.hgh-section-heading {
    font-family: var(--hgh-font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin: 0 0 16px;
}
.hgh-section-blue .hgh-section-heading { color: var(--hgh-white); }

.hgh-section-body {
    font-size: 17px;
    font-weight: 400;
    color: var(--hgh-gray-500);
    max-width: 560px;
    margin: 0 0 36px;
    line-height: 1.7;
}
.hgh-section-blue .hgh-section-body { color: rgba(255,255,255,0.7); }

/* ── FEATURE CARDS ─────────────────────────────────────────────── */
.hgh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hgh-card {
    border-radius: var(--hgh-radius-lg);
    overflow: hidden;
    background: var(--hgh-white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.hgh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.hgh-card-bar { height: 6px; background: var(--hgh-orange); }
.hgh-card-bar-blue { background: var(--hgh-blue); }
.hgh-card-bar-green { background: var(--hgh-green); }
.hgh-card-img {
    aspect-ratio: 16/9;
    background: var(--hgh-gray-100);
    overflow: hidden;
}
.hgh-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hgh-card-body { padding: 24px; }
.hgh-card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--hgh-blue-light);
    color: var(--hgh-blue);
    margin-bottom: 12px;
}
.hgh-card-title {
    font-family: var(--hgh-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--hgh-black);
    margin: 0 0 8px;
    line-height: 1.25;
}
.hgh-card-desc {
    font-size: 14px;
    color: var(--hgh-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── MISSION STRIP ─────────────────────────────────────────────── */
.hgh-mission {
    background: var(--hgh-blue);
    padding: 80px;
    text-align: center;
}
.hgh-mission-text {
    font-family: var(--hgh-font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: var(--hgh-white);
    max-width: 900px;
    margin: 0 auto 16px;
    line-height: 1.3;
}
.hgh-mission-text .accent { color: var(--hgh-yellow); }

/* ── NEXT STEPS ─────────────────────────────────────────────────── */
.hgh-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.hgh-step {
    background: var(--hgh-white);
    border: 1px solid var(--hgh-gray-200);
    border-radius: var(--hgh-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}
.hgh-step:hover {
    border-color: var(--hgh-orange);
    box-shadow: 0 8px 24px rgba(255,107,53,0.15);
    transform: translateY(-4px);
}
.hgh-step-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.hgh-step-icon-orange { background: rgba(255,107,53,0.1); }
.hgh-step-icon-blue   { background: var(--hgh-blue-light); }
.hgh-step-icon-green  { background: rgba(6,214,160,0.1); }
.hgh-step-icon-yellow { background: rgba(255,209,102,0.15); }
.hgh-step-title {
    font-family: var(--hgh-font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--hgh-black);
    margin: 0 0 8px;
}
.hgh-step-desc {
    font-size: 13px;
    color: var(--hgh-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── SCRIPTURE ─────────────────────────────────────────────────── */
.hgh-scripture {
    background: linear-gradient(135deg, var(--hgh-blue) 0%, var(--hgh-blue-mid) 100%);
    padding: 90px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hgh-scripture::before {
    content: '"';
    position: absolute;
    top: -40px; left: 40px;
    font-family: Georgia, serif;
    font-size: 400px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
}
.hgh-scripture-text {
    font-family: var(--hgh-font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    color: var(--hgh-white);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.3;
    position: relative;
}
.hgh-scripture-ref {
    font-size: 14px;
    font-weight: 700;
    color: var(--hgh-yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── GIVE ─────────────────────────────────────────────────────── */
.hgh-give-section { background: var(--hgh-gray-50); }
.hgh-give-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ── TESTIMONIES ─────────────────────────────────────────────── */
.hgh-testimony-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hgh-testimony-card {
    background: var(--hgh-white);
    border-radius: var(--hgh-radius-lg);
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--hgh-gray-200);
    transition: all 0.3s;
}
.hgh-testimony-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.hgh-testimony-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.hgh-testimony-pill-healing   { background: rgba(6,214,160,0.12);  color: #06D6A0; }
.hgh-testimony-pill-prayer    { background: var(--hgh-blue-light); color: var(--hgh-blue); }
.hgh-testimony-pill-financial { background: rgba(255,209,102,0.2); color: #b38600; }
.hgh-testimony-text {
    font-size: 15px;
    color: var(--hgh-gray-700);
    line-height: 1.75;
    margin: 0 0 24px;
}
.hgh-testimony-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--hgh-gray-200);
}
.hgh-testimony-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--hgh-blue);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--hgh-font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--hgh-white);
    flex-shrink: 0;
}
.hgh-testimony-name { font-weight: 700; font-size: 14px; color: var(--hgh-black); margin: 0; }
.hgh-testimony-loc  { font-size: 12px; color: var(--hgh-gray-500); margin: 2px 0 0; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.hgh-footer {
    background: var(--hgh-blue);
    padding: 48px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.hgh-footer-logo {
    font-family: var(--hgh-font-heading);
    font-weight: 900;
    font-size: 20px;
    color: var(--hgh-white);
    text-decoration: none;
}
.hgh-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-right: 24px;
    transition: color 0.2s;
}
.hgh-footer-links a:hover { color: var(--hgh-white); }
.hgh-footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

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

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