/*
Theme Name: FCFC Church
Theme URI: https://fcfcnc.org
Author: Faith Covenant Family Church
Author URI: https://fcfcnc.org
Description: Custom WordPress theme for Faith Covenant Family Church, Dunn, NC. Teaching, Training, Overcoming!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fcfc-church
Tags: church, custom, responsive
*/

/* ── CSS VARIABLES ── */
:root {
  --white: #FFFFFF;
  --off-white: #F8FAFE;
  --sky: #E8F4FD;
  --blue-light: #C9E6F8;
  --blue: #2B7FBF;
  --blue-deep: #1A5A8A;
  --gold: #D4A829;
  --gold-light: #FFF3CC;
  --gold-deep: #A07A10;
  --green: #3A8C60;
  --green-light: #E6F5ED;
  --text: #1A2530;
  --text-mid: #445566;
  --text-light: #7A99AA;
  --border: #D8EAF5;
  --nav-height: 68px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--nav-height);
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── GOOGLE FONTS (loaded via functions.php) ── */

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 88px 40px; }
.section.alt { background: linear-gradient(135deg, #EAF4FF 0%, #F2F8FF 100%); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { line-height: 1.15; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-body { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }

/* ── CHIP LABELS ── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 16px;
}
.chip-blue { background: var(--sky); color: var(--blue-deep); }
.chip-gold { background: var(--gold-light); color: var(--gold-deep); }
.chip-green { background: var(--green-light); color: var(--green); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white; padding: 13px 28px; border-radius: 100px;
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(43,127,191,0.3);
  transition: all 0.25s; font-family: 'Nunito', sans-serif;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(43,127,191,0.4); color: white; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  padding: 12px 26px; border-radius: 100px;
  font-weight: 700; font-size: 0.88rem;
  border: 2px solid var(--blue-light); transition: all 0.25s;
  font-family: 'Nunito', sans-serif; cursor: pointer;
}
.btn-outline:hover { background: var(--sky); border-color: var(--blue); color: var(--blue); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white; padding: 13px 28px; border-radius: 100px;
  font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(212,168,41,0.35);
  transition: all 0.25s; font-family: 'Nunito', sans-serif;
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(212,168,41,0.45); color: white; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--blue-deep);
  padding: 14px 28px; border-radius: 100px;
  font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  transition: all 0.25s; font-family: 'Nunito', sans-serif;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.2); color: var(--blue-deep); }

/* ── NAV ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-height);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(27,90,138,0.07);
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 12px rgba(43,127,191,0.3); flex-shrink: 0;
}
.nav-name strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.nav-name span { font-size: 0.68rem; color: var(--text-light); font-weight: 600; }

#site-navigation ul { display: flex; align-items: center; gap: 6px; }
#site-navigation ul li a {
  font-size: 0.82rem; font-weight: 700; color: var(--text-mid);
  padding: 7px 14px; border-radius: 8px; transition: all 0.2s;
}
#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a { color: var(--blue); background: var(--sky); }
#site-navigation ul li.menu-give a {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white; border-radius: 100px; padding: 9px 20px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(212,168,41,0.35);
}
#site-navigation ul li.menu-give a:hover { transform: translateY(-1px); color: white; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  background: linear-gradient(150deg, #EAF4FF 0%, #F2F8FF 40%, #FFF9EC 100%);
  display: flex; align-items: center;
  padding: 60px 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(43,127,191,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,41,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 2; width: 100%;
}
.hero-left { animation: fadeUp 0.8s ease both; }
.hero-right { animation: fadeUp 0.8s ease 0.2s both; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 16px 6px 8px; font-size: 0.76rem; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(43,127,191,0.1);
}
.live-dot { width: 8px; height: 8px; background: #e74c3c; border-radius: 50%; animation: pulse 1.5s infinite; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700;
  color: var(--text); line-height: 1.1; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-tagline {
  display: inline-block; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem; color: var(--gold-deep);
  border-left: 3px solid var(--gold); padding-left: 14px;
  margin-bottom: 20px; line-height: 1.5;
}
.hero-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 32px; max-width: 430px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--text); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; margin-top: 3px; }
.stat-div { width: 1px; background: var(--border); align-self: stretch; }

/* Hero card */
.hero-card {
  background: white; border-radius: 22px; padding: 32px;
  box-shadow: 0 20px 60px rgba(43,127,191,0.12);
  border: 1px solid var(--border); position: relative; z-index: 2;
}
.hc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hc-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, var(--sky), var(--blue-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.hc-head h3 { font-size: 1rem; font-weight: 800; color: var(--text); }
.hc-head p { font-size: 0.75rem; color: var(--text-light); }
.svc-list { display: flex; flex-direction: column; gap: 10px; }
.svc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--off-white); border-radius: 11px; transition: background 0.2s;
}
.svc-row:hover { background: var(--sky); }
.svc-left { display: flex; align-items: center; gap: 10px; }
.svc-dot { width: 9px; height: 9px; border-radius: 50%; }
.svc-name { font-size: 0.86rem; font-weight: 700; color: var(--text); }
.svc-time { font-size: 0.73rem; color: var(--text-light); font-weight: 600; }
.svc-badge { font-size: 0.66rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.badge-blue { background: var(--blue-light); color: var(--blue-deep); }
.badge-gold { background: var(--gold-light); color: var(--gold-deep); }
.badge-green { background: var(--green-light); color: var(--green); }

.float-badge {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border); display: flex; align-items: center; gap: 10px; z-index: 3;
}
.fc-top { top: -18px; right: -14px; animation: float 3.2s ease-in-out infinite; }
.fc-bot { bottom: -18px; left: -14px; animation: float 3.2s ease-in-out 1.2s infinite; }
.fb-emoji { font-size: 1.3rem; }
.fb-text strong { display: block; font-size: 0.8rem; font-weight: 800; color: var(--text); }
.fb-text span { font-size: 0.68rem; color: var(--text-light); }

/* ── SERMON CARDS ── */
.sermon-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; margin-top: 44px; }
.sermon-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.25s; }
.sermon-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(43,127,191,0.13); }
.sermon-thumb { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sermon-card.featured .sermon-thumb { height: 200px; }
.thumb-1 { background: linear-gradient(135deg, #1a4a7a, #2B7FBF); }
.thumb-2 { background: linear-gradient(135deg, #2a5a20, #4a8a30); }
.thumb-3 { background: linear-gradient(135deg, #6a3010, #a06020); }
.thumb-4 { background: linear-gradient(135deg, #3a1a6a, #6a40a0); }
.thumb-5 { background: linear-gradient(135deg, #1a5a4a, #2a8a70); }
.thumb-6 { background: linear-gradient(135deg, #5a2a10, #8a5020); }
.sermon-play {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; transition: all 0.2s;
}
.sermon-card:hover .sermon-play { background: rgba(255,255,255,0.3); transform: scale(1.1); }
.sermon-series-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.95);
  font-size: 0.63rem; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; backdrop-filter: blur(8px);
}
.sermon-body { padding: 18px 20px; }
.sermon-body h3 { font-family: 'Playfair Display', serif; font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.35; }
.sermon-card.featured .sermon-body h3 { font-size: 1.15rem; }
.sermon-meta { font-size: 0.73rem; color: var(--text-light); font-weight: 600; margin-bottom: 14px; }
.sermon-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 700; color: var(--blue); transition: gap 0.2s; }
.sermon-link:hover { gap: 10px; }

/* ── EVENT ROWS ── */
.events-list { display: flex; flex-direction: column; gap: 2px; margin-top: 44px; }
.event-row {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 28px; background: white;
  border-left: 3px solid transparent; border-radius: 4px; transition: all 0.25s;
}
.event-row:hover { border-left-color: var(--gold); background: var(--gold-light); }
.event-date .mo { font-size: 0.58rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; }
.event-date .dy { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--text); line-height: 1; }
.event-info h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.event-info p { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.event-badge { font-size: 0.65rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; white-space: nowrap; }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 48px 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 24px; padding: 56px 72px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 36px; align-items: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: white; margin-bottom: 10px; }
.cta-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 440px; line-height: 1.7; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 48px;
  background: linear-gradient(150deg, #EAF4FF 0%, #F2F8FF 60%, #FFF9EC 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,127,191,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero p { font-size: 1rem; color: var(--text-mid); max-width: 560px; margin: 16px auto 0; line-height: 1.78; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
  min-width: 0;
}
.about-grid > * { min-width: 0; }
/* ── ABOUT VERSE PANEL ── */
.about-verse-panel {
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  border-radius: 28px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  width: 100%;
  min-width: 0;
  box-shadow: 0 20px 60px rgba(27,90,138,0.25);
}
.about-verse-panel::before {
  content: '❝';
  position: absolute;
  top: -40px; left: 16px;
  font-size: 14rem;
  color: rgba(255,255,255,0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.about-verse-panel::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  background: rgba(212,168,41,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.avp-verse {
  position: relative;
  z-index: 2;
  text-align: center;
}
.avp-verse blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: white;
  line-height: 1.8;
  margin-bottom: 24px;
  quotes: none;
}
.avp-verse cite {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
}
.pastor-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 24px; padding: 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  align-items: center; color: white; margin-bottom: 60px;
}
.pastor-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 3px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0; overflow: hidden;
}
.pastor-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.pastor-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.pastor-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.75; margin-bottom: 12px; }
.pastor-info p { font-size: 0.92rem; opacity: 0.85; line-height: 1.7; }
.mission-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 80px; }
.mission-card { padding: 28px; border-radius: 18px; background: var(--off-white); border: 1px solid var(--border); transition: all 0.2s; }
.mission-card:hover { background: var(--sky); border-color: var(--blue-light); transform: translateY(-3px); }
.mission-card .mi { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.mission-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.mission-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

/* ── SERVICE TIME CARDS ── */
.service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.service-card {
  background: white; border-radius: 20px; padding: 32px 28px;
  text-align: center; border: 1px solid var(--border);
  transition: all 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(43,127,191,0.13); }
.svc-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.svc-day { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.svc-time-display { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 6px; }
.svc-time-display sub { font-size: 1rem; color: var(--text-mid); font-family: 'Nunito', sans-serif; font-weight: 600; }
.svc-name-display { font-size: 0.86rem; font-weight: 700; color: var(--text-mid); margin-bottom: 14px; }
.svc-divider { width: 36px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--gold)); border-radius: 2px; margin: 0 auto 14px; }
.svc-note-display { font-size: 0.78rem; color: var(--text-light); }

/* ── GIVE PAGE ── */
.give-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.give-options { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.give-option {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px; background: white; border-radius: 16px;
  border: 1px solid var(--border); transition: all 0.2s;
}
.give-option:hover { border-color: var(--gold); background: var(--gold-light); transform: translateX(4px); }
.go-icon { font-size: 1.8rem; }
.go-text h4 { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.go-text p { font-size: 0.8rem; color: var(--text-mid); }
.go-arrow { margin-left: auto; color: var(--text-light); }
.give-verse {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 22px; padding: 40px; color: white; text-align: center;
}
.give-verse blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; line-height: 1.65; margin-bottom: 16px; }
.give-verse cite { font-size: 0.8rem; opacity: 0.7; font-weight: 700; }
.give-impact { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.impact-item { background: rgba(255,255,255,0.12); border-radius: 14px; padding: 22px; text-align: center; border: 1px solid rgba(255,255,255,0.15); }
.impact-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.impact-label { font-size: 0.72rem; opacity: 0.75; font-weight: 600; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: white; border-radius: 16px; border: 1px solid var(--border); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(43,127,191,0.25);
}
.ci-text strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.ci-text a:hover { color: var(--blue); }
.ci-text span { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.map-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 20px;
  background: linear-gradient(135deg, var(--sky), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; font-size: 0.8rem;
  color: var(--blue-deep); font-weight: 700; border: 1px solid var(--border); margin-top: 24px;
}
.map-placeholder span { font-size: 3rem; }

/* ── SERMONS FULL PAGE ── */
.sermon-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tag {
  padding: 8px 18px; border-radius: 100px; font-size: 0.78rem; font-weight: 700;
  border: 2px solid var(--border); background: white; color: var(--text-mid);
  cursor: pointer; transition: all 0.2s; font-family: 'Nunito', sans-serif;
}
.filter-tag:hover { border-color: var(--blue); background: var(--sky); color: var(--blue-deep); }
.sermons-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fb-live-bar {
  background: linear-gradient(135deg, #1877F2, #0d5fd4);
  border-radius: 18px; padding: 28px 36px;
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 40px; color: white;
}
.fb-bar-icon { font-size: 2.2rem; }
.fb-bar-text h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.fb-bar-text p { font-size: 0.86rem; opacity: 0.85; line-height: 1.6; }
.fb-bar-btn {
  margin-left: auto; background: white; color: #1877F2;
  padding: 10px 22px; border-radius: 100px; font-weight: 800; font-size: 0.84rem;
  text-decoration: none; white-space: nowrap; transition: all 0.2s;
}
.fb-bar-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); color: #1877F2; }

/* ── EVENTS FULL PAGE ── */
.events-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.event-card {
  background: white; border-radius: 18px; border: 1px solid var(--border);
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; padding: 24px 28px; gap: 24px;
  transition: all 0.25s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(43,127,191,0.1); border-color: var(--blue-light); }
.event-card-date {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white; border-radius: 12px; padding: 10px; text-align: center;
}
.event-card-date .m { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.event-card-date .d { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.event-card-info h3 { font-size: 0.97rem; font-weight: 800; color: var(--text); margin-bottom: 5px; line-height: 1.35; }
.event-card-info p { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.ev-tag { font-size: 0.64rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; align-self: flex-start; }
.tag-w { background: var(--sky); color: var(--blue-deep); }
.tag-s { background: var(--green-light); color: var(--green); }
.tag-y { background: #FFF8E8; color: #8a6010; }
.tag-o { background: #FFF0EE; color: #A03020; }
.tag-h { background: #F5EEFF; color: #6030A0; }
.tag-c { background: var(--gold-light); color: var(--gold-deep); }

/* ── FOOTER ── */
#colophon {
  background: var(--text); padding: 64px 48px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; max-width: 1160px; margin: 0 auto;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 0.68rem; font-weight: 800; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.4); font-weight: 600; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.18); font-weight: 600; }
.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 33px; height: 33px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 0.78rem; font-weight: 800; transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); color: white; }

/* ── WORDPRESS EDITOR STYLES ── */
.wp-block-image img { border-radius: 16px; }
.entry-content p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════
   HAMBURGER MENU BUTTON (hidden on desktop)
═══════════════════════════════════════════════ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none; cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1001;
}
.menu-toggle:hover { background: var(--sky); }
.menu-toggle span {
  display: block;
  height: 2px; width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav-open #site-navigation {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: white;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(27,90,138,0.12);
  padding: 16px 24px 24px;
  z-index: 998;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-open #site-navigation ul {
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.mobile-nav-open #site-navigation ul li { width: 100%; }
.mobile-nav-open #site-navigation ul li a {
  display: block;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 10px;
  width: 100%;
}
.mobile-nav-open #site-navigation ul li.menu-give a {
  margin-top: 8px;
  text-align: center;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════
   TABLET — 768px to 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Nav */
  #site-header { padding: 0 32px; }
  #site-navigation ul li a { font-size: 0.78rem; padding: 7px 10px; }

  /* Layout containers */
  .container { padding: 0 32px; }
  .section { padding: 72px 32px; }

  /* Hero — stack on tablet */
  .hero { padding: 48px 32px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .hero-desc { max-width: 100%; }
  .hero-stats { gap: 24px; }

  /* Grids — 2 column on tablet */
  .sermon-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sermon-card.featured .sermon-thumb { height: 160px; }
  .sermons-page-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mission-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .events-card-grid { grid-template-columns: 1fr; }

  /* Two-column page layouts */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .give-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Pastor card */
  .pastor-card { margin: 0 32px 60px; }

  /* Mission row */
  .mission-row { padding: 0 32px; margin-bottom: 60px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 0 48px; }
  #colophon { padding: 52px 32px 0; }

  /* CTA banner */
  .cta-banner { margin: 0 32px 72px; padding: 48px 52px; }

  /* Event rows */
  .event-row { padding: 18px 20px; gap: 16px; }

  /* Page hero */
  .page-hero { padding: 80px 32px; }

  /* Facebook bar */
  .fb-live-bar { margin: 40px 0 32px; padding: 24px 28px; }
}

/* ═══════════════════════════════════════════════
   MOBILE — up to 767px
═══════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── NAV ── */
  #site-header { padding: 0 20px; height: 60px; }
  --nav-height: 60px;
  body { padding-top: 60px; }
  .nav-name span { display: none; }
  .nav-name strong { font-size: 0.8rem; }
  .nav-logo { width: 36px; height: 36px; font-size: 0.85rem; }

  /* Show hamburger, hide desktop nav */
  .menu-toggle { display: flex; }
  #site-navigation { display: none; }

  /* ── LAYOUT ── */
  .container { padding: 0 20px; }
  .section { padding: 56px 20px; }

  /* ── HERO ── */
  .hero {
    padding: 36px 20px 48px;
    min-height: auto;
    overflow: hidden;
  }
  .hero::before, .hero::after { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-left {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-right { display: none; }
  .hero-pill {
    font-size: 0.68rem;
    padding: 5px 12px 5px 6px;
    margin-bottom: 18px;
    max-width: 100%;
    white-space: normal;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    margin-bottom: 14px;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .hero-tagline {
    font-size: 0.92rem;
    margin-bottom: 16px;
    max-width: 100%;
    word-break: break-word;
  }
  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero-actions { gap: 10px; margin-bottom: 32px; flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    padding: 13px 20px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.65rem; }
  .stat-div { display: none; }

  /* ── SECTION HEADERS ── */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .chip { font-size: 0.68rem; padding: 4px 12px; }

  /* ── SERMON GRID ── */
  .sermon-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .sermon-card.featured .sermon-thumb { height: 160px; }
  .sermons-page-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── EVENTS LIST ── */
  .events-list { margin-top: 28px; }
  .event-row {
    grid-template-columns: 54px 1fr;
    gap: 14px; padding: 16px 20px;
  }
  .event-row .event-badge { display: none; }
  .event-date .dy { font-size: 1.7rem; }

  /* ── EVENTS CARD GRID ── */
  .events-card-grid { grid-template-columns: 1fr; gap: 12px; }
  .event-card { grid-template-columns: 64px 1fr; gap: 14px; padding: 18px 20px; }
  .event-card .ev-tag { display: none; }

  /* ── CTA BANNER ── */
  .cta-banner {
    margin: 0 20px 56px;
    padding: 36px 28px;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.88rem; }
  .btn-white { width: 100%; justify-content: center; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 56px 20px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .page-hero p { font-size: 0.92rem; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .about-img-box { aspect-ratio: 16/9; font-size: 3rem; }
  .pastor-card {
    margin: 0 20px 40px;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }
  .pastor-avatar { margin: 0 auto; width: 80px; height: 80px; font-size: 2rem; }
  .mission-row { grid-template-columns: 1fr; gap: 12px; padding: 0 20px; margin-bottom: 48px; }
  .service-cards { grid-template-columns: 1fr; gap: 12px; }

  /* ── SERMONS ── */
  .fb-live-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin: 20px 0 28px;
    padding: 24px 20px;
    border-radius: 14px;
  }
  .fb-bar-btn { margin: 0 auto; }
  .sermon-filter { gap: 8px; }
  .filter-tag { font-size: 0.72rem; padding: 7px 14px; }

  /* ── GIVE ── */
  .give-grid { grid-template-columns: 1fr; gap: 28px; }
  .give-options { gap: 10px; margin-top: 20px; }
  .give-option { padding: 18px 20px; gap: 14px; }
  .give-verse { padding: 28px 24px; }
  .give-verse blockquote { font-size: 1.05rem; }
  .give-impact { grid-template-columns: 1fr 1fr; gap: 10px; }
  .impact-item { padding: 16px; }
  .impact-num { font-size: 1.6rem; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .ci-item { padding: 16px 18px; gap: 12px; }
  .ci-icon { width: 38px; height: 38px; font-size: 0.95rem; }
  .map-placeholder { aspect-ratio: 4/3; font-size: 0.78rem; }

  /* ── FOOTER ── */
  #colophon { padding: 48px 20px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-col { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .footer-col:last-child { border-bottom: none; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }

  /* ── BUTTONS ── */
  .btn-primary, .btn-outline, .btn-gold { font-size: 0.85rem; padding: 12px 22px; }

  /* ── SECTION SPACING ── */
  .section.alt { padding: 56px 20px; }
}

/* ═══════════════════════════════════════════════
   SMALL MOBILE — up to 400px
═══════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.85rem; }
  .section-title { font-size: 1.6rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { font-size: 0.8rem; padding: 10px 16px; }
  .svc-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pastor-card { padding: 24px 18px; }
}
