/* =========================================
   PEO CHURCH NYC — GLOBAL STYLESHEET
   Logo palette: red #E63C2F · orange #F4952A · navy #1E3A8A
                 blue #3B82F6 · teal #0EA5A2 · lime #B5CB36
                 brown #8B5E3C · green #3AAA35
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* ── Primary Navy ── */
  --navy:          #1E3A8A;
  --navy-dark:     #0F1F4A;
  --navy-mid:      #2D5AA0;
  --navy-light:    #3B6BC9;
  /* ── Logo accent palette ── */
  --accent-red:    #E63C2F;
  --accent-orange: #F4952A;
  --accent-teal:   #0EA5A2;
  --accent-lime:   #7BB32E;
  --accent-green:  #3AAA35;
  /* ── Legacy aliases (used throughout templates) ── */
  --purple:        #1E3A8A;
  --purple-dark:   #0F1F4A;
  --purple-light:  #2D5AA0;
  --gold:          #D97706;
  --gold-light:    #FCD34D;
  --coral:         #E11D48;
  --green:         #059669;
  --green-light:   #34D399;
  --cream:         #F4F7FC;
  --dark:          #0F1F4A;
  --gray:          #5A6A80;
  --light-gray:    #E8EEF8;
  --white:         #FFFFFF;
  /* ── Gradients ── */
  --gradient-hero: linear-gradient(135deg, #060E1F 0%, #0F1F4A 45%, #1E3A8A 100%);
  --gradient-gold: linear-gradient(135deg, #D97706, #FCD34D);
  --gradient-warm: linear-gradient(135deg, #E11D48, #D97706);
  --gradient-navy: linear-gradient(135deg, #0F1F4A, #1E3A8A);
  --gradient-teal: linear-gradient(135deg, #0EA5A2, #3AAA35);
  /* ── Utilities ── */
  --shadow:        0 4px 24px rgba(30,58,138,0.15);
  --shadow-lg:     0 12px 48px rgba(15,31,74,0.22);
  --radius:        14px;
  --radius-lg:     24px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--dark); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ---- ANNOUNCE BAR ---- */
.announce-bar { background: var(--gradient-navy); color: white; text-align: center; padding: 10px 5%; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.announce-bar a { color: var(--gold-light); text-decoration: underline; }
.live-dot { display:inline-block; width:8px; height:8px; background:#EF4444; border-radius:50%; flex-shrink:0; animation: livePulse 1.4s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.75)} }

/* ---- NAVBAR ---- */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(15,31,74,0.97); backdrop-filter:blur(12px); display:flex; align-items:center; justify-content:space-between; padding:0 5%; height:70px; box-shadow:0 2px 20px rgba(0,0,0,0.3); transition:var(--transition); }
.nav-brand { display:flex; align-items:center; gap:12px; }
.nav-logo { width:48px; height:48px; border-radius:50%; overflow:hidden; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:white; }
.nav-logo img { width:48px; height:48px; object-fit:cover; border-radius:50%; }
.nav-name { display:flex; flex-direction:column; line-height:1.1; }
.nav-name span:first-child { font-family:'Bebas Neue',sans-serif; font-size:1.2rem; letter-spacing:2px; color:var(--gold-light); }
.nav-name span:last-child { font-size:0.62rem; color:rgba(255,255,255,0.55); letter-spacing:1.5px; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.82); font-size:0.78rem; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; padding:8px 12px; border-radius:8px; transition:var(--transition); }
.nav-links a:hover, .nav-links a.active { background:rgba(253,211,77,0.15); color:var(--gold-light); }
.nav-donate { background:var(--gradient-gold) !important; color:var(--dark) !important; border-radius:25px !important; padding:8px 20px !important; font-weight:800 !important; }
.nav-donate:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(217,119,6,0.4); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--gold-light); border-radius:2px; transition:var(--transition); }

/* ---- NAV DROPDOWN ---- */
.nav-links li { position:relative; }
.nav-dropdown { position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(-6px); background:rgba(15,31,74,0.98); backdrop-filter:blur(12px); border-radius:12px; padding:8px; min-width:210px; box-shadow:0 12px 40px rgba(0,0,0,0.4); border:1px solid rgba(253,211,77,0.12); opacity:0; visibility:hidden; pointer-events:none; transition:opacity 0.2s ease,transform 0.2s ease; z-index:200; }
.nav-links li:hover .nav-dropdown { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.nav-dropdown a { display:block; padding:10px 16px; border-radius:8px; color:rgba(255,255,255,0.82) !important; font-size:0.76rem !important; font-weight:700 !important; letter-spacing:0.5px; text-transform:uppercase; transition:var(--transition); background:transparent !important; }
.nav-dropdown a:hover { background:rgba(253,211,77,0.15) !important; color:var(--gold-light) !important; }
.nav-has-dropdown > a::after { content:" ▾"; font-size:0.7em; opacity:0.6; }

/* ---- LAYOUT ---- */
.section { padding:90px 5%; }
.container { max-width:1200px; margin:0 auto; }
.section-light { background:var(--cream); }
.section-purple { background:var(--gradient-hero); color:white; }
.section-gold { background:linear-gradient(135deg,#FEF3C7,#FDE68A); }
.section-dark { background:var(--dark); color:white; }
.section-white { background:var(--white); }
.text-center { text-align:center; }
.text-center .section-subtitle { margin:0 auto; }

/* ---- TYPOGRAPHY ---- */
.section-tag { display:inline-block; font-family:'Bebas Neue',sans-serif; font-size:0.85rem; letter-spacing:3px; padding:6px 18px; border-radius:50px; margin-bottom:16px; text-transform:uppercase; }
.tag-gold   { background:var(--gradient-gold); color:var(--dark); }
.tag-coral  { background:var(--coral); color:white; }
.tag-green  { background:var(--green); color:white; }
.tag-purple { background:var(--purple); color:white; }
.tag-navy   { background:var(--gradient-navy); color:white; }
.tag-teal   { background:var(--gradient-teal); color:white; }
.tag-white  { background:rgba(255,255,255,0.2); color:white; border:1px solid rgba(255,255,255,0.4); }
.section-title    { font-size:clamp(2rem,4vw,3rem); margin-bottom:16px; }
.section-subtitle { font-size:1.05rem; opacity:0.75; max-width:620px; font-family:'Nunito',sans-serif; font-weight:400; }
.divider { width:60px; height:4px; border-radius:2px; margin:16px 0 28px; }
.divider-gold  { background:var(--gradient-gold); }
.divider-white { background:rgba(255,255,255,0.5); }
.divider-coral { background:var(--coral); }
.divider-teal  { background:var(--gradient-teal); }
.divider-center { margin-left:auto; margin-right:auto; }

/* ---- BUTTONS ---- */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; border-radius:50px; font-family:'Nunito',sans-serif; font-weight:800; font-size:0.9rem; letter-spacing:0.3px; transition:var(--transition); cursor:pointer; border:none; text-decoration:none; }
.btn svg { flex-shrink:0; }
.btn-purple { background:var(--gradient-navy); color:white; }
.btn-purple:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(30,58,138,0.4); }
.btn-coral { background:var(--coral); color:white; }
.btn-coral:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(225,29,72,0.35); }
.btn-gold { background:var(--gradient-gold); color:var(--dark); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(217,119,6,0.35); }
.btn-white { background:white; color:var(--dark); }
.btn-white:hover { background:var(--light-gray); transform:translateY(-2px); }
.btn-outline { background:transparent; color:white; border:2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background:rgba(255,255,255,0.1); border-color:white; }
.btn-teal { background:var(--gradient-teal); color:white; }
.btn-teal:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(14,165,162,0.4); }

/* ---- SCROLL REVEAL ---- */
.scroll-reveal { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease,transform 0.65s ease; }
.scroll-reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.3s; }
.delay-4 { transition-delay:.4s; }
.animate-up { animation:fadeUp 0.7s ease forwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:none} }

/* ---- HERO BASE ---- */
.page-hero { background:var(--gradient-hero); padding:160px 5% 90px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(253,211,77,0.08)"/></svg>') 0 0/40px 40px; }
.page-hero-inner { position:relative; z-index:1; }
.page-hero .section-title { color:white; }
.page-hero .section-subtitle { color:rgba(255,255,255,0.75); max-width:700px; }
.page-hero h1 { color:white; font-size:clamp(2.2rem,5vw,3.6rem); margin-bottom:16px; }
.page-hero h2 { color:white; font-size:clamp(1.8rem,4vw,3rem); margin-bottom:16px; }
.page-hero p  { color:rgba(255,255,255,0.82); font-size:1.05rem; max-width:680px; line-height:1.75; }

/* ---- SOCIAL BUTTONS ---- */
.social-btn { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.12); color:white; transition:var(--transition); border:1.5px solid rgba(255,255,255,0.2); }
.social-btn:hover { background:rgba(255,255,255,0.28); transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,0.3); }
.social-btn svg { display:block; }

/* ---- FOOTER ---- */
footer { background:var(--gradient-hero); color:white; padding:70px 5% 30px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:50px; max-width:1200px; margin:0 auto 50px; }
.footer-brand { }
.footer-logo-mark { width:56px; height:56px; border-radius:50%; overflow:hidden; margin-bottom:16px; background:white; display:flex; align-items:center; justify-content:center; }
.footer-logo-mark img { width:56px; height:56px; object-fit:cover; border-radius:50%; }
.footer-name { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:2px; color:var(--gold-light); margin-bottom:4px; }
.footer-sub { font-size:0.75rem; color:rgba(255,255,255,0.5); letter-spacing:1px; text-transform:uppercase; margin-bottom:18px; }
.footer-desc { font-size:0.88rem; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:20px; }
.footer-socials { display:flex; gap:10px; }
.footer-col h4 { font-family:'Bebas Neue',sans-serif; font-size:1rem; letter-spacing:2px; color:var(--gold-light); margin-bottom:16px; text-transform:uppercase; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { color:rgba(255,255,255,0.65); font-size:0.88rem; transition:var(--transition); }
.footer-col ul a:hover { color:var(--gold-light); padding-left:4px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:0.88rem; color:rgba(255,255,255,0.65); }
.footer-contact-item .fci-icon { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; opacity:0.75; margin-top:2px; }
.footer-bottom { max-width:1200px; margin:0 auto; padding-top:24px; border-top:1px solid rgba(255,255,255,0.1); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:0.8rem; color:rgba(255,255,255,0.4); }
.footer-bottom a { color:rgba(255,255,255,0.4); font-size:0.8rem; }
.footer-bottom a:hover { color:var(--gold-light); }

/* ---- BELIEF CARDS (about.html) ---- */
.beliefs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1200px; margin:50px auto 0; }
.belief-card { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:var(--radius); padding:28px; transition:var(--transition); }
.belief-card:hover { background:rgba(255,255,255,0.13); transform:translateY(-4px); }
.belief-num { font-family:'Bebas Neue',sans-serif; font-size:2.2rem; color:var(--gold-light); line-height:1; margin-bottom:10px; }
.belief-card h3 { color:white; font-size:1.1rem; margin-bottom:8px; }
.belief-card p { font-size:0.88rem; color:rgba(255,255,255,0.7); line-height:1.7; }

/* ---- VALUE CARDS (about.html) ---- */
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:1200px; margin:50px auto 0; }
.value-card { background:white; border-radius:var(--radius-lg); padding:32px 28px; box-shadow:var(--shadow); transition:var(--transition); }
.value-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.value-icon { width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; color:white; }
.value-icon svg { display:block; }
.value-card h3 { font-size:1.15rem; color:var(--dark); margin-bottom:10px; }
.value-card p { font-size:0.9rem; color:var(--gray); line-height:1.7; }

/* ---- MINISTRY CARDS ---- */
.min-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; max-width:1200px; margin:50px auto 0; }
.min-card { background:white; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); transition:var(--transition); }
.min-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.min-card-color { height:8px; }
.min-card-body { padding:28px; }
.min-hub-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; color:white; }
.min-hub-icon svg { display:block; }

/* ---- SERVICE DETAIL CARDS ---- */
.service-detail-card { display:grid; grid-template-columns:320px 1fr; background:white; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); transition:var(--transition); margin-bottom:30px; }
.service-detail-card:hover { box-shadow:var(--shadow-lg); }
.sdc-color { position:relative; overflow:hidden; padding:36px 32px; min-height:220px; display:flex; flex-direction:column; justify-content:flex-end; }
.sdc-photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.sdc-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(6,14,31,0.15) 0%,rgba(6,14,31,0.78) 65%); }
.sdc-color>*:not(.sdc-photo):not(.sdc-overlay) { position:relative; z-index:2; }
.sdc-day  { font-family:'Bebas Neue',sans-serif; font-size:0.85rem; letter-spacing:3px; color:rgba(255,255,255,0.75); margin-bottom:4px; }
.sdc-name { font-family:'Playfair Display',serif; font-size:1.5rem; color:white !important; line-height:1.2; }
.sdc-time { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:1px; color:rgba(255,255,255,0.9); }
.sdc-body  { padding:36px; }
.sdc-body h3 { font-size:1.1rem; color:var(--dark); margin-bottom:10px; }
.sdc-body p  { font-size:0.95rem; color:var(--gray); line-height:1.75; margin-bottom:16px; }
.sdc-meta { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.sdc-meta-item { display:inline-flex; align-items:center; gap:6px; font-size:0.8rem; font-weight:700; color:var(--gray); background:var(--light-gray); padding:6px 14px; border-radius:20px; }

/* ---- EXPECT CARDS ---- */
.expect-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
.expect-card { background:white; border-radius:var(--radius); padding:28px 24px; box-shadow:var(--shadow); }
.expect-icon { display:flex; align-items:center; justify-content:center; width:52px; height:52px; background:var(--light-gray); border-radius:14px; margin-bottom:14px; color:var(--navy); }
.expect-icon svg { display:block; }
.expect-card h4 { font-size:1.05rem; color:var(--dark); margin-bottom:8px; }
.expect-card p  { font-size:0.88rem; color:var(--gray); line-height:1.65; }

/* ---- PRAYER WALL ---- */
.prayer-card { background:white; border-radius:var(--radius); padding:24px; box-shadow:var(--shadow); border-left:4px solid var(--navy); }

/* ---- STATS BAR ---- */
.stats-bar { background:var(--gradient-navy); padding:50px 5%; }
.stats-inner { display:flex; justify-content:center; gap:60px; flex-wrap:wrap; max-width:1200px; margin:0 auto; }
.stat-item { text-align:center; color:white; }
.stat-num { font-family:'Bebas Neue',sans-serif; font-size:2.8rem; line-height:1; color:var(--gold-light); }
.stat-icon { display:flex; align-items:center; justify-content:center; width:48px; height:48px; background:rgba(255,255,255,0.12); border-radius:12px; margin:0 auto 10px; color:var(--gold-light); }
.stat-label { font-size:0.82rem; color:rgba(255,255,255,0.7); font-weight:700; letter-spacing:0.5px; text-transform:uppercase; margin-top:4px; }

/* ---- DIRECTION CARDS ---- */
.directions-grid { display:grid; grid-template-columns:1fr 1fr; gap:30px; max-width:1200px; margin:50px auto 0; }
.dir-card { background:white; border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow); }
.dir-card h3 { font-size:1.3rem; color:var(--dark); margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.dir-card h3 .dir-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--light-gray); border-radius:10px; color:var(--navy); flex-shrink:0; }
.dir-card ul { list-style:none; }
.dir-card ul li { display:flex; gap:10px; padding:12px 0; border-bottom:1px solid rgba(30,58,138,0.07); font-size:0.93rem; color:var(--gray); align-items:flex-start; }
.dir-card ul li:last-child { border-bottom:none; }
.map-embed { background:var(--gradient-hero); border-radius:var(--radius-lg); height:300px; display:flex; align-items:center; justify-content:center; margin-top:20px; text-align:center; padding:30px; }
.map-embed a { color:var(--gold-light); text-decoration:underline; font-weight:700; }

/* ---- CONTACT CARDS ---- */
.cic-icon { width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cic-icon-purple { background:linear-gradient(135deg,#dbeafe,#bfdbfe); color:var(--navy); }
.cic-icon-gold   { background:linear-gradient(135deg,#FEF3C7,#FDE68A); color:#92400e; }
.cic-icon-coral  { background:linear-gradient(135deg,#fee2e2,#fecaca); color:#991b1b; }
.cic-icon-green  { background:linear-gradient(135deg,#D1FAE5,#A7F3D0); color:#065f46; }
.cic-icon svg { display:block; }

/* ---- CHECK LIST ---- */
.check-list { list-style:none; }
.check-list li { display:flex; align-items:flex-start; gap:10px; padding:6px 0; font-size:0.93rem; color:var(--gray); }
.check-list li .cl-icon { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; width:20px; height:20px; background:var(--green); border-radius:50%; color:white; margin-top:2px; }
.check-list li .cl-icon svg { width:12px; height:12px; }

/* ---- WHAT-WE-BELIEVE PAGE ---- */
.tenet-card { background:white; border-radius:var(--radius); border-left:4px solid var(--navy); box-shadow:var(--shadow); margin-bottom:16px; overflow:hidden; transition:var(--transition); }
.tenet-card:hover { box-shadow:var(--shadow-lg); }
.tenet-header { display:flex; justify-content:space-between; align-items:center; padding:20px 24px; cursor:pointer; }
.tenet-chevron { transition:transform 0.3s ease; font-size:1.1rem; color:var(--gray); }
.tenet-body { max-height:0; overflow:hidden; padding:0 24px; border-top:1px solid var(--light-gray); transition:max-height 0.4s ease, padding 0.3s ease; }
.tenet-body.open { max-height:800px; padding:0 24px 22px; }
.tenet-chevron.open { transform:rotate(180deg); }
.filter-tabs { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.filter-btn { padding:8px 20px; border-radius:50px; border:2px solid var(--light-gray); background:white; cursor:pointer; font-family:'Nunito',sans-serif; font-weight:700; font-size:0.85rem; transition:var(--transition); color:var(--gray); }
.filter-btn.active, .filter-btn:hover { background:var(--gradient-navy); color:white; border-color:transparent; }
.category-tag { display:inline-block; font-size:0.72rem; font-weight:800; letter-spacing:1px; text-transform:uppercase; padding:3px 10px; border-radius:50px; margin-bottom:6px; }
.scripture-banner {
  background: var(--gradient-gold);
  padding: 52px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scripture-banner::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  pointer-events: none;
}
.scripture-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  color: var(--dark);
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto;
  font-style: italic;
}
.scripture-ref { display:inline-block; font-size:0.85rem; color: var(--dark); opacity: 0.7; background: rgba(255,255,255,0.35); padding:5px 16px; border-radius:50px; margin-top:14px; font-style:italic; font-weight: 700; letter-spacing: 0.5px; }

/* ---- LIVESTREAM ---- */
.s-icon { display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:14px; background:var(--light-gray); color:var(--navy); }
.s-icon svg { display:block; }
.s-emoji { display:none; }

/* ---- PLAY BIG (sermons) ---- */
.play-big { display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background:var(--gradient-navy); color:white; }
.play-big svg { display:block; }

/* ---- IMPACT EMOJI ---- */
.impact-emoji { display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:14px; background:var(--light-gray); color:var(--navy); }
.impact-emoji svg { display:block; }

/* ---- GIVE FORM ICONS ---- */
.gf-icon { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:12px; background:var(--light-gray); color:var(--navy); }
.gf-icon svg { display:block; }

/* ---- SERMONS LIST ICON ---- */
.sli-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:10px; background:var(--light-gray); color:var(--navy); }
.sli-icon svg { display:block; }

/* ---- MOBILE ---- */
@media (max-width:768px) {
  .nav-links { display:none; flex-direction:column; position:absolute; top:70px; left:0; right:0; background:rgba(15,31,74,0.98); padding:20px; gap:4px; }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
  .beliefs-grid, .values-grid { grid-template-columns:1fr; }
  .service-detail-card { grid-template-columns:1fr; }
  .directions-grid { grid-template-columns:1fr; }
  .expect-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns:1fr; }
}

/* ── VIBRANT SOCIAL BUTTONS ──────────────────────────── */
.social-yt   { background: #FF0000 !important; border-color: #FF0000 !important; }
.social-fb   { background: #1877F2 !important; border-color: #1877F2 !important; }
.social-give { background: linear-gradient(135deg,#D97706,#F59E0B) !important; border-color: #D97706 !important; }
.social-yt:hover   { background: #CC0000 !important; box-shadow: 0 6px 20px rgba(255,0,0,0.5) !important; }
.social-fb:hover   { background: #1665CC !important; box-shadow: 0 6px 20px rgba(24,119,242,0.5) !important; }
.social-give:hover { box-shadow: 0 6px 20px rgba(217,119,6,0.6) !important; }
.social-btn { transform: translateY(0); }
.social-btn:hover  { transform: translateY(-3px) !important; }

/* ── FOOTER LOGO ────────────────────────────────────── */
.footer-logo { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.footer-logo-mark { width:60px; height:60px; border-radius:50%; overflow:hidden; background:white; display:flex; align-items:center; justify-content:center; flex-shrink:0; padding:4px; box-shadow:0 0 0 2px rgba(253,211,77,0.4); }
.footer-logo-mark img { width:52px; height:52px; object-fit:cover; border-radius:50%; display:block; }
.footer-logo-text { display:flex; flex-direction:column; }
.footer-name { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:2px; color:var(--gold-light); line-height:1.1; }
.footer-tagline { font-size:0.68rem; color:rgba(255,255,255,0.5); letter-spacing:1.5px; text-transform:uppercase; margin-top:2px; }
.footer-desc { font-size:0.87rem; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:16px; }
.footer-social { display:flex; gap:10px; margin:16px 0; }
.footer-seals { margin:14px 0 10px; }
.footer-seals img { height:60px; width:auto; opacity:0.9; }
.footer-ein { font-size:0.78rem; color:rgba(255,255,255,0.45); line-height:1.6; margin-top:6px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul a { color:rgba(255,255,255,0.6); font-size:0.86rem; transition:var(--transition); }
.footer-col ul a:hover { color:var(--gold-light); padding-left:4px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:11px; font-size:0.86rem; color:rgba(255,255,255,0.6); }
.footer-contact-item a { color:rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color:var(--gold-light); }
.footer-bottom { max-width:1200px; margin:0 auto; padding-top:24px; border-top:1px solid rgba(255,255,255,0.1); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:0.8rem; color:rgba(255,255,255,0.4); }
.footer-bottom a { color:rgba(255,255,255,0.45); font-size:0.8rem; transition:var(--transition); }
.footer-bottom a:hover { color:var(--gold-light); }

/* ── CONTRAST FIXES: text on navy/dark backgrounds ──── */
.section-purple .section-title,
.section-purple h1, .section-purple h2, .section-purple h3 { color: white !important; }
.section-purple .section-subtitle { color: rgba(255,255,255,0.82) !important; }
.section-purple p { color: rgba(255,255,255,0.78); }
/* gold section (light bg) — dark text */
.section-gold .section-title,
.section-gold h1, .section-gold h2, .section-gold h3 { color: var(--dark) !important; }
.section-gold .section-subtitle { color: rgba(15,31,74,0.75) !important; opacity:1 !important; }
.section-gold p { color: var(--dark); }
/* tag-purple on gold bg needs to pop */
.section-gold .tag-purple { background: var(--navy,var(--purple)); color: white; }

/* ── HERO VISUAL CARD ───────────────────────────────── */
.hero-visual { background:rgba(5,13,31,0.6); border:1px solid rgba(255,255,255,0.15); border-radius:var(--radius-lg); overflow:hidden; backdrop-filter:blur(12px); }
.hero-verse-wrap { padding:22px 26px 26px; background:rgba(5,13,31,0.4); }
.hero-verse { font-family:'Playfair Display',serif; font-style:italic; color:rgba(255,255,255,0.92); font-size:1rem; line-height:1.75; margin-bottom:10px; }
.hero-verse-ref { font-family:'Bebas Neue',sans-serif; letter-spacing:2px; font-size:0.85rem; color:var(--gold-light); }
