/* =============================================================
   THE HOME CHURCH OF CLEAR LAKE — Stylesheet
   Designed by Michelle's Web Design
   Color palette derived from the church logo:
     Dark navy  #14141e  (logo background)
     Sky blue   #0099cc  (primary brand accent)
     Amber gold #c8973c  (secondary accent)
   ============================================================= */

/* ---- CSS Custom Properties ---- */
:root {
    --navy:        #14141e;
    --navy-dk:     #0c0c14;
    --navy-lt:     #1a2a40;
    --sky:         #0099cc;
    --sky-lt:      #29b5ed;
    --sky-pale:    #cce8f5;
    --amber:       #c8973c;
    --amber-lt:    #e8b84b;
    --amber-pale:  #f5e6c8;
    --cream:       #faf8f3;
    --cream-dk:    #ede8dd;
    --dark:        #08080e;
    --text:        #374151;
    --text-muted:  #6b7280;
    --white:       #ffffff;

    --shadow-sm:   0 2px 8px rgba(0,0,0,0.1);
    --shadow-md:   0 6px 24px rgba(0,0,0,0.15);
    --shadow-lg:   0 12px 48px rgba(0,0,0,0.22);
    --radius:      12px;
    --radius-lg:   20px;
    --ease:        all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: 100px 0; }

.text-center { text-align: center; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--ease);
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
}
.btn-gold:hover {
    background: var(--sky-lt);
    border-color: var(--sky-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,153,204,0.38);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn-block { width: 100%; justify-content: center; }

.btn-amber {
    background: var(--amber);
    color: var(--dark);
    border-color: var(--amber);
}
.btn-amber:hover {
    background: var(--amber-lt);
    border-color: var(--amber-lt);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,151,60,0.38);
}

.btn-amber-outline {
    background: transparent;
    color: var(--amber);
    border-color: var(--amber);
}
.btn-amber-outline:hover {
    background: var(--amber);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,151,60,0.28);
}

/* ================================================================
   SHARED SECTION TYPOGRAPHY
   ================================================================ */
.eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 12px;
}
.eyebrow.light { color: var(--sky-lt); }

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    color: var(--navy);
    margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}
.section-subtitle.light { color: rgba(255,255,255,0.72); }
.text-center .section-subtitle { margin: 0 auto; }

.divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--sky-lt));
    border-radius: 2px;
    margin: 18px 0 24px;
}
.divider.center { margin-left: auto; margin-right: auto; }

.section-header { margin-bottom: 56px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--ease);
}

.navbar.scrolled {
    background: var(--white);
    padding: 14px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cross {
    font-size: 2rem;
    color: var(--sky);
    line-height: 1;
    font-style: normal;
}

/* Logo image in navbar */
.nav-logo {
    height: 64px;
    width: 64px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--ease);
}
.nav-logo:hover { transform: scale(1.06); }

.nav-title { display: flex; flex-direction: column; }

.nav-title-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--ease);
    line-height: 1.2;
}
.navbar.scrolled .nav-title-main { color: var(--navy); }

.nav-title-sub {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    transition: var(--ease);
    line-height: 1.4;
}
.navbar.scrolled .nav-title-sub { color: var(--text-muted); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    border-radius: 50px;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--sky-lt); }
.navbar.scrolled .nav-links a:hover { color: var(--sky); }

.nav-cta {
    background: var(--sky) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
}
.nav-cta:hover {
    background: var(--sky-lt) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,153,204,0.38);
}

.nav-give {
    background: var(--amber) !important;
    color: var(--dark) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    border-radius: 50px;
}
.nav-give:hover {
    background: var(--amber-lt) !important;
    color: var(--dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200,151,60,0.42);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--ease);
    transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--navy); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 28px 80px;
    background:
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=85')
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 8, 20, 0.94) 0%,
        rgba(14, 14, 28, 0.90) 45%,
        rgba(0, 40, 70, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    animation: fadeUp 1s ease both;
}

.hero-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky-lt);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 22px;
}
.hero-title em {
    font-style: italic;
    color: var(--amber-lt);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 44px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    animation: bounce 2.2s ease infinite;
    z-index: 1;
}
.hero-scroll:hover { color: var(--sky-lt); }

/* ================================================================
   INFO BANNER
   ================================================================ */
.info-banner {
    background: var(--sky);
    padding: 30px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 40px;
}
.banner-item i {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.banner-item div { display: flex; flex-direction: column; }
.banner-item strong {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.3;
}
.banner-item span {
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    line-height: 1.4;
}

.banner-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.28);
    flex-shrink: 0;
}

/* ================================================================
   GIVE / TITHE & OFFERING STRIP
   ================================================================ */
.give-strip {
    background: linear-gradient(135deg, #fdf6e3 0%, #fefaf0 50%, #fdf3d5 100%);
    border-top: 1px solid var(--amber-pale);
    border-bottom: 1px solid var(--amber-pale);
    padding: 48px 28px;
}
.give-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.give-strip-text {
    display: flex;
    align-items: center;
    gap: 22px;
}
.give-icon {
    font-size: 2.6rem;
    color: var(--amber);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(200,151,60,0.28));
}
.give-strip-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: var(--navy);
    margin: 0 0 5px;
    font-weight: 700;
}
.give-strip-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.give-strip-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ================================================================
   WELCOME / ABOUT
   ================================================================ */
.welcome-section { background: var(--cream); }

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-image-col { position: relative; }

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--cream-dk);
}

.welcome-image-col::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    border: 3px solid var(--sky);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--amber);
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.image-badge span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    line-height: 1.3;
}
.image-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.1;
}

.welcome-lead {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 16px;
}

.scripture-block {
    background: var(--white);
    border-left: 4px solid var(--amber);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0 32px;
}
.scripture-block i {
    color: var(--amber);
    opacity: 0.7;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}
.scripture-block q {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--navy);
    display: block;
    margin-bottom: 8px;
    quotes: none;
}
.scripture-block cite {
    font-size: 0.85rem;
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ================================================================
   BELIEFS
   ================================================================ */
.beliefs-section { background: var(--white); }

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.belief-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: var(--ease);
}
.belief-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--sky));
    opacity: 0;
    transition: var(--ease);
}
.belief-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-pale);
}
.belief-card:hover::before { opacity: 1; }

.belief-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--ease);
}
.belief-icon i { color: var(--sky); font-size: 1.4rem; }
.belief-card:hover .belief-icon {
    background: linear-gradient(135deg, var(--sky), var(--sky-lt));
}
.belief-card:hover .belief-icon i { color: var(--white); }

.belief-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.belief-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ================================================================
   WHY THE HOME CHURCH / FULL BELIEFS
   ================================================================ */
.why-section { background: var(--cream); }

.why-intro-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.why-lead {
    font-size: 1.12rem;
    color: var(--text);
    line-height: 1.85;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.full-beliefs-label {
    text-align: center;
    margin-bottom: 44px;
}
.full-beliefs-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--navy);
}

.full-beliefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fb-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    border: 1px solid var(--cream-dk);
    border-left: 4px solid var(--sky);
    transition: var(--ease);
    box-shadow: var(--shadow-sm);
}
.fb-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--amber);
}

.fb-icon {
    width: 52px;
    height: 52px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--ease);
}
.fb-icon i { color: var(--sky); font-size: 1.15rem; }
.fb-item:hover .fb-icon { background: var(--amber-pale); }
.fb-item:hover .fb-icon i { color: var(--amber); }

.fb-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.fb-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}
.fb-ref {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sky);
    letter-spacing: 0.3px;
    font-style: italic;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-section { padding: 0; }

.services-bg {
    padding: 100px 0;
    background: linear-gradient(150deg, #eef7fc 0%, #f5fafd 55%, #e8f4fb 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-radius: var(--radius-lg);
    padding: 44px 28px;
    text-align: center;
    color: var(--navy);
    transition: var(--ease);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,153,204,0.15);
    border-color: var(--sky);
}
.service-card.featured {
    background: var(--sky);
    border-color: transparent;
    box-shadow: 0 10px 36px rgba(0,153,204,0.35);
}
.service-card.featured:hover { background: var(--sky-lt); }

.featured-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-icon i { font-size: 1.5rem; color: var(--sky); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.22); }
.service-card.featured .service-icon i { color: var(--white); }

.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.service-card.featured h3 { color: var(--white); }

.service-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sky);
    margin-bottom: 14px;
    line-height: 1;
}
.service-card.featured .service-time { color: var(--white); }

.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.service-card.featured p { color: rgba(255,255,255,0.85); }

.services-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
    text-align: center;
}
.services-note i { color: var(--sky); }
.services-note strong { color: var(--navy); }

/* ================================================================
   SATURDAY PRAYER NIGHT
   ================================================================ */
.prayer-night-section {
    position: relative;
    background: var(--navy-dk);
    overflow: hidden;
}
.prayer-night-inner {
    position: relative;
    padding: 90px 28px;
    text-align: center;
}
.prayer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,151,60,0.18) 0%, rgba(200,151,60,0.06) 40%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.prayer-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.prayer-icon-wrap {
    margin-bottom: 20px;
}
.prayer-flame {
    font-size: 3rem;
    color: var(--amber-lt);
    filter: drop-shadow(0 0 18px rgba(232,184,75,0.7));
    animation: flicker 3s ease-in-out infinite;
}
@keyframes flicker {
    0%, 100% { filter: drop-shadow(0 0 18px rgba(232,184,75,0.7)); transform: scale(1); }
    50%       { filter: drop-shadow(0 0 28px rgba(232,184,75,0.95)); transform: scale(1.06); }
}
.prayer-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}
.prayer-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}
.prayer-time-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 10px 36px;
    border-radius: 50px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(200,151,60,0.45);
}
.prayer-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 20px;
}
.prayer-verse {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 36px;
}
.prayer-cta {
    font-size: 1rem;
}

/* ================================================================
   CALENDAR / EVENTS
   ================================================================ */
.calendar-section { background: var(--cream); }

.calendar-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.canva-embed-area {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}
.canva-embed-area iframe {
    width: 100%;
    border: none;
    display: block;
}

.embed-placeholder {
    background: var(--white);
    padding: 64px 40px;
    text-align: center;
    border: 2px dashed var(--sky-pale);
    border-radius: var(--radius-lg);
}

.placeholder-icon {
    width: 90px;
    height: 90px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.placeholder-icon i { font-size: 2.4rem; color: var(--sky); }

.embed-placeholder h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.embed-placeholder p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

.embed-instructions {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    border-radius: var(--radius);
    padding: 22px 28px;
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
}
.instructions-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    margin-bottom: 14px;
}
.instructions-header i { color: #4f46e5; }
.embed-instructions ol {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 20px;
    line-height: 2.1;
}
.embed-instructions strong { color: var(--text); }
.embed-instructions code {
    background: #e0e7ff;
    color: #4338ca;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.82rem;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    margin-bottom: 32px;
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i { color: var(--sky); font-size: 1rem; }
.contact-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.contact-item span { color: var(--text-muted); font-size: 0.95rem; }

.social-row { display: flex; gap: 12px; }

.social-btn {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--ease);
}
.social-btn:hover {
    background: var(--sky);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,153,204,0.35);
}

.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    font-size: 1.65rem;
    color: var(--navy);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--cream-dk);
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(0,153,204,0.12);
}
.form-group textarea { resize: vertical; min-height: 118px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer-top {
    background: var(--dark);
    padding: 84px 0 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 52px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-logo-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.footer-cross { font-size: 2.6rem; color: var(--sky); line-height: 1; }
.footer-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.3;
}
.footer-location {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    transition: var(--ease);
}
.footer-social a:hover { background: var(--sky); color: var(--white); }

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col > ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col > ul a {
    color: rgba(255,255,255,0.52);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col > ul a::before {
    content: '›';
    color: var(--sky);
    font-size: 1rem;
}
.footer-col > ul a:hover { color: var(--sky-lt); padding-left: 4px; }

.times-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.times-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.52);
    font-size: 0.9rem;
}
.times-list li i { color: var(--sky); width: 16px; }

.footer-scripture {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--amber);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
}
.footer-scripture i {
    color: var(--amber);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 6px;
    opacity: 0.8;
}
.footer-scripture p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.65;
}
.footer-scripture span { color: var(--amber); font-style: normal; font-weight: 700; }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.52);
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-list li i { color: var(--sky); width: 16px; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    background: #000;
    padding: 20px 28px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.85rem; }

.design-credit { color: rgba(255,255,255,0.45) !important; }
.design-credit i { color: #e25555; }
.design-credit strong { color: var(--amber) !important; }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--ease);
    z-index: 900;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ================================================================
   ABOUT PAGE — Page Hero
   ================================================================ */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 140px 28px 80px;
    background:
        url('https://images.unsplash.com/photo-1534103362078-d07e750bd0c4?w=1920&q=85')
        center / cover no-repeat;
}
.page-hero .hero-overlay {
    background: linear-gradient(
        160deg,
        rgba(8, 8, 20, 0.93) 0%,
        rgba(0, 30, 60, 0.85) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    animation: fadeUp 0.9s ease both;
}
.page-hero-content .eyebrow { color: var(--sky-lt); }
.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}
.page-hero-content h1 em { font-style: italic; color: var(--sky-lt); }
.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    line-height: 1.75;
}

/* ================================================================
   ABOUT PAGE — Origin / Founding story
   ================================================================ */
.about-origin { background: var(--cream); }

.about-origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-origin-img {
    position: relative;
}
.about-origin-img::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    right: 16px; bottom: 16px;
    border: 3px solid var(--sky);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    pointer-events: none;
}
.about-origin-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.founding-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--sky);
}
.founding-badge .badge-date {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky-lt);
    margin-bottom: 4px;
}
.founding-badge .badge-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.3;
}

.about-story p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-story p:last-child { margin-bottom: 0; }

/* Church Photo Frame — wraps real church photos with a caption overlay */
.church-photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.church-photo-frame img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.55s ease;
}
.church-photo-frame:hover img { transform: scale(1.03); }
.church-photo-wide img { height: 480px; object-position: center center; }
.photo-caption-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(8,8,14,0.82));
    padding: 48px 20px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    font-style: italic;
    letter-spacing: 0.02em;
}
.photo-caption-bar i { color: var(--sky-lt); font-size: 0.78rem; flex-shrink: 0; }

/* ================================================================
   ABOUT PAGE — "But, God!" moments
   ================================================================ */
.but-god-section {
    background: linear-gradient(180deg, #f0f8fd 0%, #e8f4fb 50%, #f0f8fd 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.but-god-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,153,204,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.but-god-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
.but-god-header .eyebrow { color: var(--sky); }
.but-god-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--navy);
    line-height: 1.2;
}
.but-god-header h2 em {
    font-style: italic;
    color: var(--sky);
    display: block;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.journey-card {
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-top: 4px solid var(--sky);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--ease);
    box-shadow: var(--shadow-sm);
}
.journey-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,153,204,0.15);
    border-color: var(--sky);
    border-top-color: var(--sky);
}
.journey-card::before {
    content: attr(data-num);
    position: absolute;
    top: -16px;
    left: 28px;
    background: var(--sky);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.journey-card-icon {
    width: 56px;
    height: 56px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(0,153,204,0.2);
}
.journey-card-icon i { color: var(--sky); font-size: 1.3rem; }

.journey-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.journey-card .journey-year {
    color: var(--sky);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.journey-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* "But, God!" pull quote */
.but-god-quote {
    margin-top: 72px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.but-god-quote-inner {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--sky-pale);
    border-top: 4px solid var(--sky);
    border-radius: var(--radius-lg);
    padding: 40px 56px;
    max-width: 700px;
    box-shadow: var(--shadow-md);
}
.but-god-quote-inner .big-but-god {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-style: italic;
    color: var(--sky);
    display: block;
    margin-bottom: 16px;
    line-height: 1.1;
}
.but-god-quote-inner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

/* ================================================================
   ABOUT PAGE — Today / Current Home
   ================================================================ */
.about-today { background: var(--white); }

.today-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.today-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
}

.today-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--sky);
}
.highlight-item i { color: var(--sky); font-size: 1.1rem; flex-shrink: 0; }
.highlight-item span { color: var(--navy); font-size: 0.9rem; font-weight: 600; }

.today-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ================================================================
   ABOUT PAGE — Vision / Heart section
   ================================================================ */
.about-vision {
    background: linear-gradient(160deg, var(--cream) 0%, #eef7fc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,153,204,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.vision-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.vision-content .eyebrow { color: var(--sky); }
.vision-content h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 24px;
}

.vision-verse {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 48px;
}

.miracle-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}
.miracle-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--sky-pale);
    transition: var(--ease);
    box-shadow: var(--shadow-sm);
}
.miracle-item:hover {
    background: #f0f8fd;
    border-color: var(--sky);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.miracle-item i { color: var(--sky); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.miracle-item div strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.miracle-item div span { color: var(--text-muted); font-size: 0.85rem; }

.salvation-callout {
    background: var(--sky);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-bottom: 40px;
}
.salvation-callout p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--white);
    font-style: italic;
    line-height: 1.75;
}
.salvation-callout strong {
    font-style: normal;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================================
   ABOUT PAGE — CTA Section
   ================================================================ */
.about-cta {
    background: var(--cream);
    padding: 80px 0;
    text-align: center;
}
.about-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 16px;
}
.about-cta p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-cta .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-lt);
    border-color: var(--navy-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20,20,30,0.35);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 52px; }
    .welcome-image-col { max-width: 540px; }
    .beliefs-grid { grid-template-columns: repeat(2, 1fr); }
    .full-beliefs-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-origin-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-origin-img { max-width: 560px; }
    .today-grid { grid-template-columns: 1fr; gap: 52px; }
    .journey-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .miracle-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .but-god-section,
    .about-vision { padding: 72px 0; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100dvh;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 32px 40px;
        gap: 6px;
        transition: right 0.32s ease;
        z-index: 1050;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--white) !important; width: 100%; padding: 12px 16px; font-size: 1rem; }
    .nav-cta {
        margin-top: 20px !important;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px !important;
        border-radius: 50px !important;
    }
    .nav-give {
        margin-top: 8px !important;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
        padding: 14px 24px !important;
        border-radius: 50px !important;
    }

    .give-strip-inner { flex-direction: column; align-items: flex-start; }
    .give-strip-buttons { width: 100%; }
    .give-strip-buttons .btn { flex: 1; justify-content: center; }

    .info-banner { flex-direction: column; gap: 18px; padding: 32px 28px; }
    .banner-divider { width: 80px; height: 1px; }
    .banner-item { padding: 0; }

    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .beliefs-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 52px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

    .today-highlights { grid-template-columns: 1fr; }
    .but-god-quote-inner { padding: 28px 28px; }
    .about-cta .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .contact-form-wrap { padding: 32px 24px; }
    .embed-placeholder { padding: 44px 20px; }
    .image-frame img { height: auto; }
    .about-origin-img img,
    .church-photo-frame img,
    .church-photo-wide img { height: 320px; }
    .today-img img { height: 320px; }
    .salvation-callout { padding: 24px 24px; }
}
