/* ═══════════════════════════════════════════════════
   PROLIFIC LIFE CHRISTIAN MINISTRIES — Global Styles
   ministry.pbia.com.ng
═══════════════════════════════════════════════════ */

:root {
  --navy: #0a1628;
  --navy-mid: #122244;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --gold-pale: #f5e6c0;
  --crimson: #8b1a1a;
  --white: #ffffff;
  --off-white: #f9f6ef;
  --text-dark: #1a1a2e;
  --text-body: #2d3748;
  --text-muted: #6b7280;
  --border: rgba(200,146,42,0.25);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(10,22,40,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--off-white); color: var(--text-body); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
h1, h2, h4 { color: var(--text-dark); }
h3 { color: #e8b84b !important; }
.hero h2, .hero h3 { color: var(--white) !important; }
.hero h2 span, .hero h3 span { color: var(--gold-light); }

/* ── CONTAINER ───────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ─────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar .socials a { margin-left: 12px; font-size: 0.85rem; transition: color 0.2s; }

/* ── HEADER / NAV ────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.logo-text .church-name { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 0.95rem; font-weight: 700; line-height: 1.2; letter-spacing: 0.05em; }
.logo-text .tagline { color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.12em; }

nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
nav ul li { position: relative; }
nav ul li a {
  color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 12px; display: block; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--gold-light); background: rgba(200,146,42,0.1); }

nav ul li .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy); border: 1px solid var(--border); border-radius: 6px;
  min-width: 210px; z-index: 999; box-shadow: 0 12px 40px rgba(0,0,0,0.5); padding: 6px 0;
}
nav ul li:hover .dropdown { display: block; }
.dropdown li a { font-size: 0.78rem; padding: 9px 18px; border-radius: 0; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important; border-radius: 25px !important;
  font-weight: 900 !important; padding: 9px 20px !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: 0.3s; border-radius: 2px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 14px 32px; border-radius: 40px;
  font-weight: 900; font-size: 0.88rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(200,146,42,0.4); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,146,42,0.5); color: var(--navy); }
.btn-outline {
  border: 2px solid rgba(200,146,42,0.6); color: var(--gold-light);
  padding: 13px 30px; border-radius: 40px; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s, border-color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(200,146,42,0.12); border-color: var(--gold-light); color: var(--gold-light); }
.btn-music {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light); padding: 13px 28px; border-radius: 40px;
  font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 9px; transition: transform 0.2s;
}
.btn-music:hover { transform: translateY(-2px); color: var(--gold-light); }
.btn-books {
  background: linear-gradient(135deg, var(--crimson), #a02020);
  color: var(--white); padding: 13px 28px; border-radius: 40px;
  font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 9px; transition: transform 0.2s;
}
.btn-books:hover { transform: translateY(-2px); color: var(--white); }

/* ── SECTION HELPERS ─────────────────────────────── */
.section-label { display: inline-block; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.section-title { color: var(--navy); font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: var(--navy); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin-bottom: 20px; border-radius: 2px; }
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,146,42,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,146,42,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); font-weight: 900; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 0.97rem; max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* ── TICKER ──────────────────────────────────────── */
.ticker-wrap { background: var(--gold); padding: 10px 0; overflow: hidden; width: 100%; }
.ticker { display: flex; flex-wrap: nowrap; animation: tickerScroll 35s linear infinite; white-space: nowrap; will-change: transform; min-width: max-content; width: max-content; }
.ticker span { display: inline-block; flex-shrink: 0; color: var(--navy); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 40px; }
.ticker span::before { content: '✦'; margin-right: 16px; }

/* ── HERO ────────────────────────────────────────── */
.hero { min-height: 92vh; position: relative; display: flex; align-items: center; background: linear-gradient(160deg, #060e1e 0%, #0d1f3c 40%, #1a1200 100%); overflow: hidden; }
.hero-bg-globe { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #1a4a8a, #0a1628 70%); opacity: 0.18; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,146,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,146,42,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; top: 20%; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,146,42,0.12); border: 1px solid rgba(200,146,42,0.4); color: var(--gold-light); padding: 7px 18px; border-radius: 30px; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; animation: fadeInDown 0.8s ease; }
.hero h1, .hero h2 { font-family: 'Cinzel', serif; font-weight: 900; font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--white); line-height: 1.1; margin-bottom: 12px; animation: fadeInUp 0.9s ease 0.1s both; }
.hero h1 span, .hero h2 span { color: var(--gold-light); display: block; }
.hero-verse { color: rgba(255,255,255,0.65); font-size: 0.95rem; font-style: italic; border-left: 3px solid var(--gold); padding-left: 16px; margin: 20px 0 32px; line-height: 1.7; animation: fadeInUp 0.9s ease 0.25s both; }
.hero-verse cite { display: block; color: var(--gold-light); font-style: normal; font-size: 0.82rem; margin-top: 6px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.9s ease 0.35s both; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; animation: fadeInUp 0.9s ease 0.45s both; }
.hero-content { display: grid !important; grid-template-columns: 1fr 420px; align-items: center; gap: 48px; width: 100%; max-width: 100% !important; }
.hero-text-col { display: flex; flex-direction: column; align-items: flex-start; }
.hero-pastor-col { display: flex; justify-content: center; align-items: flex-end; position: relative; }
.hero-pastor-col img { width: 100%; max-width: 400px; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.55)); border-radius: 12px 12px 0 0; display: block; }
.hero h1, .hero h2 { font-size: clamp(1.8rem, 3.8vw, 3.2rem) !important; line-height: 1.08; }
.hero h1 span, .hero h2 span { display: block; white-space: nowrap; font-size: clamp(1.7rem, 3.8vw, 3.2rem); }
.hero-badge { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.hero-stats { display: flex; flex-wrap: nowrap; gap: 24px; margin-top: 24px; width: 100%; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold-light); font-weight: 900; }
.stat-item .lbl { color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── ABOUT STRIP ─────────────────────────────────── */
.about-strip { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.about-strip::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 45%; background: linear-gradient(135deg, rgba(200,146,42,0.08), transparent); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { color: rgba(255,255,255,0.72); line-height: 1.85; margin-bottom: 16px; font-size: 0.97rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px; transition: background 0.3s, border-color 0.3s; }
.about-card:hover { background: rgba(200,146,42,0.08); border-color: var(--gold); }
.about-card .icon { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 10px; }
.about-card h4 { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.9rem; margin-bottom: 8px; }
.about-card p { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.6; }

/* ── SCRIPTURE BANNER ────────────────────────────── */
.scripture-banner { background: linear-gradient(135deg, var(--crimson) 0%, #5a0e0e 100%); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.scripture-banner::before { content: '"'; position: absolute; top: -20px; left: 40px; font-size: 12rem; color: rgba(255,255,255,0.05); font-family: 'Cinzel', serif; line-height: 1; }
.scripture-banner blockquote { max-width: 820px; margin: 0 auto; font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: var(--white); line-height: 1.75; font-style: italic; }
.scripture-banner cite { display: block; margin-top: 16px; color: var(--gold-light); font-family: 'Cinzel', serif; font-size: 0.85rem; font-style: normal; letter-spacing: 0.1em; }

/* ── SERVICES ────────────────────────────────────── */
.services { padding: 90px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; border: 1px solid rgba(200,146,42,0.15); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold-light); margin-bottom: 20px; }
.service-card h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--navy) !important; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; margin-bottom: 18px; }
.service-card .time { color: var(--gold); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; }

/* ── APOSTLE ─────────────────────────────────────── */
.apostle { padding: 90px 0; background: var(--white); }
.apostle-inner { display: grid; grid-template-columns: 400px 1fr; gap: 70px; align-items: start; }
.apostle-portrait { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 20px 20px 60px rgba(10,22,40,0.15); }
.apostle-portrait img { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; display: block; }
.apostle-portrait-placeholder { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 20px; }
.apostle-portrait-placeholder i { font-size: 6rem; color: rgba(200,146,42,0.35); }
.apostle-portrait-placeholder p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 12px; font-style: italic; }
.apostle-badge { position: absolute; bottom: 24px; left: 24px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); padding: 8px 20px; border-radius: 30px; font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.8rem; }
.apostle-bio p { color: var(--text-body); line-height: 1.85; margin-bottom: 14px; font-size: 0.97rem; }
.apostle-roles { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.role-pill { background: var(--off-white); border: 1px solid var(--border); color: var(--navy); padding: 5px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; }
.apostle-music-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── MUSIC PREVIEW ───────────────────────────────── */
.music-preview { padding: 90px 0; background: var(--navy); position: relative; overflow: hidden; }
.music-preview::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23c8922a' fill-opacity='0.07'/%3E%3C/svg%3E"); }
.music-preview .container { position: relative; z-index: 2; }
.songs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 20px; margin-top: 40px; }
.song-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: flex; gap: 16px; align-items: center; transition: background 0.3s; cursor: pointer; }
.song-card:hover { background: rgba(200,146,42,0.1); }
.song-thumb { width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg, var(--crimson), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold-light); }
.song-info h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.song-info p { color: rgba(255,255,255,0.45); font-size: 0.77rem; }
.song-streams { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.stream-btn { display:inline-flex; align-items:center; gap:6px; height:36px; padding:0 14px; border-radius:20px; font-size:0.8rem; font-weight:600; text-decoration:none; white-space:nowrap; transition: opacity 0.2s; color:var(--white); }
.stream-btn.spotify { background:#1DB954; color:#fff; border-color:#1DB954; }
.stream-btn.apple { background:#fc3c44; color:#fff; border-color:#fc3c44; }
.stream-btn.youtube { background:#FF0000; color:#fff; border-color:#FF0000; }
.stream-btn.audiomack { background:#FFA200; color:#fff; border-color:#FFA200; }
.stream-btn.boomplay { background:#00C15A; color:#fff; border-color:#00C15A; }
.stream-btn.amazon { background:#FF9900; color:#fff; border-color:#FF9900; }
.stream-btn:hover { opacity: 0.85; }
.music-cta-wrap { text-align: center; margin-top: 40px; }

/* ── MINISTRY ARMS ───────────────────────────────── */
.ministry-arms { padding: 90px 0; background: var(--off-white); }
.arms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; margin-top: 48px; }
.arm-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid rgba(200,146,42,0.12); transition: all 0.3s; }
.arm-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(200,146,42,0.12); transform: translateY(-4px); }
.arm-card .arm-icon { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold-light); }
.arm-card h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--navy) !important; margin-bottom: 10px; }
.arm-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.65; }

/* ── EVENTS ──────────────────────────────────────── */
.events { padding: 90px 0; background: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; margin-top: 48px; }
.event-card { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,146,42,0.15); display: flex; transition: box-shadow 0.3s; }
.event-card:hover { box-shadow: 0 16px 50px rgba(10,22,40,0.1); }
.event-date { background: linear-gradient(160deg, var(--navy), var(--navy-mid)); color: var(--gold-light); width: 80px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 10px; }
.event-date .day { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.event-date .month { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
.event-body { padding: 20px; flex: 1; }
.event-cat { background: var(--gold-pale); color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 12px; display: inline-block; margin-bottom: 8px; }
.event-body h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--navy) !important; margin-bottom: 8px; }
.event-body p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 12px; }
.event-meta { display: flex; gap: 14px; color: var(--text-muted); font-size: 0.75rem; }
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-meta i { color: var(--gold); }

/* ── BOOKS ───────────────────────────────────────── */
.books-section { padding: 90px 0; background: linear-gradient(160deg, var(--navy) 0%, #1a0505 100%); }
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 24px; margin-top: 48px; }
.book-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; transition: all 0.3s; }
.book-card:hover { border-color: var(--gold-light); background: rgba(200,146,42,0.08); transform: translateY(-4px); }
.book-cover { height: 200px; border-radius: 8px; margin-bottom: 16px; background: linear-gradient(160deg, var(--crimson), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(200,146,42,0.5); overflow: hidden; }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-card h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.book-card p { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { padding: 90px 0; background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-top: 48px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid rgba(200,146,42,0.12); position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 5rem; color: var(--gold-pale); font-family: 'Playfair Display', serif; line-height: 1; }
.testi-card p { color: var(--text-body); font-style: italic; line-height: 1.8; font-size: 0.92rem; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1.1rem; font-weight: 700; font-family: 'Cinzel', serif; overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author .name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-author .loc { font-size: 0.75rem; color: var(--text-muted); }

/* ── GIVE ────────────────────────────────────────── */
.give-section { padding: 90px 0; text-align: center; background: linear-gradient(135deg, var(--crimson) 0%, #6b1010 100%); position: relative; overflow: hidden; }
.give-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; }
.give-section .container { position: relative; z-index: 2; }
.give-section .section-title { color: var(--white); }
.give-section > .container > p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; line-height: 1.8; }
.give-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG ────────────────────────────────────────── */
.blog-preview { padding: 90px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; margin-top: 48px; }
.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,146,42,0.12); transition: transform 0.3s, box-shadow 0.3s; display: block; color: inherit; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-thumb { height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb i { font-size: 3.5rem; color: rgba(200,146,42,0.3); }
.blog-cat-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-body { padding: 22px 22px 26px; background: var(--white); }
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; color: var(--text-muted); font-size: 0.75rem; flex-wrap: wrap; }
.blog-meta i { color: var(--gold); }
.blog-body h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--navy) !important; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 0.82rem; margin-top: 14px; }

/* ── NEWSLETTER ──────────────────────────────────── */
.newsletter { background: var(--navy); padding: 70px 0; }
.newsletter-inner { display: flex; gap: 40px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.newsletter-text h2 { font-family: 'Cinzel', serif; color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--white); padding: 13px 20px; border-radius: 40px; font-size: 0.9rem; width: 260px; outline: none; font-family: 'Lato', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; cursor: pointer; padding: 13px 28px; border-radius: 40px; font-weight: 900; font-size: 0.85rem; font-family: 'Lato', sans-serif; letter-spacing: 0.06em; transition: transform 0.2s; }
.newsletter-form button:hover { transform: scale(1.03); }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: #060e1e; border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-about .logo-wrap { margin-bottom: 16px; display: flex; }
.footer-about p { color: rgba(255,255,255,0.45); font-size: 0.83rem; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: all 0.2s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 0.88rem; margin-bottom: 18px; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; color: rgba(255,255,255,0.5); font-size: 0.83rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.5); }
.footer-contact li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(200,146,42,0.12); margin-top: 50px; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── FLOATING BUTTON ─────────────────────────────── */
.floating-watch { position: fixed; bottom: 30px; right: 30px; z-index: 999; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 6px 24px rgba(200,146,42,0.5); transition: transform 0.2s; }
.floating-watch:hover { transform: scale(1.1); color: var(--navy); }
.floating-tooltip { position: fixed; bottom: 34px; right: 100px; z-index: 998; background: var(--navy); color: var(--white); padding: 7px 14px; border-radius: 20px; font-size: 0.75rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.floating-watch:hover ~ .floating-tooltip { opacity: 1; }

/* ── INNER PAGE SPECIFIC ─────────────────────────── */
.section-row-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

/* About page */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.vm-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.vm-card.crimson::before { background: linear-gradient(90deg, var(--crimson), #a02020); }
.vm-card .big-icon { font-size: 3rem; color: var(--gold-pale); margin-bottom: 16px; }
.vm-card h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; }
.vm-card p { color: var(--text-body); line-height: 1.85; }

.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.obj-item { display: flex; gap: 16px; align-items: flex-start; }
.obj-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-weight: 900; font-size: 0.9rem; flex-shrink: 0; }
.obj-text h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.obj-text p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; }

.beliefs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; margin-top: 40px; }
.belief-card { background: var(--off-white); border-radius: 12px; padding: 24px; border-left: 4px solid var(--gold); }
.belief-card h4 { font-family: 'Cinzel', serif; color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.belief-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; }

.activity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.activity-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border-radius: 12px; padding: 20px; border: 1px solid var(--border); }
.activity-item .icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.activity-item p { color: var(--text-body); font-size: 0.88rem; line-height: 1.7; }

/* Music page */
.platforms { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.platform-btn { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 11px 22px; border-radius: 40px; font-size: 0.85rem; font-weight: 700; transition: all 0.2s; }
.platform-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.platform-btn.spotify:hover { background: #1DB954; border-color: #1DB954; color: #fff; }
.platform-btn.apple:hover { background: #fc3c44; border-color: #fc3c44; color: #fff; }
.platform-btn.youtube-btn:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.platform-btn.audiomack:hover { background: #ffa500; border-color: #ffa500; color: #fff; }

.filter-bar { display: flex; gap: 10px; margin: 40px 0 30px; flex-wrap: wrap; }
.filter-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); padding: 8px 20px; border-radius: 25px; cursor: pointer; font-size: 0.8rem; font-weight: 700; transition: all 0.2s; font-family: 'Lato', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.full-songs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.song-card-full { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all 0.3s; position: relative; overflow: hidden; }
.song-card-full:hover { background: rgba(200,146,42,0.08); border-color: var(--gold); transform: translateY(-4px); }
.song-card-full::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity 0.3s; }
.song-card-full:hover::before { opacity: 1; }
.song-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.song-cover-art { width: 64px; height: 64px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; background: linear-gradient(135deg, var(--crimson), var(--navy-mid)); overflow: hidden; }
.song-cover-art img { width: 100%; height: 100%; object-fit: cover; }
.song-meta h3 { color: var(--white) !important; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.song-meta .album { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.song-meta .year { color: var(--gold); font-size: 0.72rem; margin-top: 4px; }
.song-links { display: flex; gap: 8px; flex-wrap: wrap; }
.stream-link { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); padding: 5px 12px; border-radius: 15px; font-size: 0.72rem; transition: all 0.2s; }
.stream-link:hover { background: var(--gold); color: var(--navy); }

.albums-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 24px; margin-top: 32px; }
.album-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.album-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(200,146,42,0.15); }
.album-cover { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: linear-gradient(160deg, var(--navy-mid), var(--crimson)); overflow: hidden; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-info { padding: 18px; }
.album-info h3 { color: var(--white) !important; font-size: 0.95rem; margin-bottom: 4px; font-family: 'Cinzel', serif; }
.album-info p { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.album-info .tracks { color: var(--gold); font-size: 0.72rem; margin-top: 6px; }

/* Blog page */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding: 70px 0; }
.cat-strip { background: var(--white); border-bottom: 1px solid rgba(200,146,42,0.15); padding: 16px 0; }
.cats { display: flex; gap: 10px; flex-wrap: wrap; }
.cat-pill { background: var(--off-white); border: 1px solid var(--border); color: var(--text-muted); padding: 7px 18px; border-radius: 25px; font-size: 0.78rem; font-weight: 700; transition: all 0.2s; display: inline-block; }
.cat-pill:hover, .cat-pill.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.featured-post { background: var(--white); border-radius: 20px; overflow: hidden; margin-bottom: 30px; border: 1px solid rgba(200,146,42,0.12); display: grid; grid-template-columns: 1fr 1fr; transition: box-shadow 0.3s; color: inherit; }
.featured-post:hover { box-shadow: 0 20px 60px rgba(10,22,40,0.1); }
.featured-thumb { background: linear-gradient(160deg, var(--navy), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(200,146,42,0.25); position: relative; min-height: 280px; overflow: hidden; }
.featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feat-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--navy); padding: 5px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.featured-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.featured-body .cat { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; }
.featured-body h2 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 14px; line-height: 1.35; }
.featured-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,146,42,0.12); transition: all 0.3s; display: block; color: inherit; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 45px rgba(10,22,40,0.09); }
.post-thumb { height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(200,146,42,0.25); position: relative; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-cat { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 15px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.post-body { padding: 20px; }
.post-meta { display: flex; gap: 12px; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; flex-wrap: wrap; }
.post-meta i { color: var(--gold); }
.post-body h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--navy) !important; line-height: 1.4; margin-bottom: 8px; }
.post-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid rgba(200,146,42,0.12); }
.widget-title { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold-pale); }
.search-wrap { display: flex; }
.search-wrap input { flex: 1; padding: 11px 16px; border: 1px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; font-size: 0.88rem; outline: none; font-family: 'Lato', sans-serif; background: var(--off-white); }
.search-wrap button { background: var(--gold); border: none; padding: 11px 16px; border-radius: 0 8px 8px 0; cursor: pointer; color: var(--navy); font-size: 1rem; }
.cat-list { list-style: none; }
.cat-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gold-pale); font-size: 0.85rem; }
.cat-list li:last-child { border-bottom: none; }
.cat-list li a { color: var(--text-body); }
.cat-list li a:hover { color: var(--gold); }
.cat-count { background: var(--gold-pale); color: var(--gold); padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; font-weight: 700; }
.recent-list { display: flex; flex-direction: column; gap: 14px; }
.recent-item { display: flex; gap: 12px; align-items: flex-start; color: inherit; }
.recent-thumb { width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: rgba(200,146,42,0.5); overflow: hidden; }
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-info h4 { font-size: 0.82rem; color: var(--navy); font-weight: 700; line-height: 1.35; margin-bottom: 4px; }
.recent-info p { font-size: 0.72rem; color: var(--text-muted); }
.tags-cloud { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--off-white); border: 1px solid var(--border); color: var(--text-muted); padding: 5px 12px; border-radius: 15px; font-size: 0.75rem; transition: all 0.2s; }
.tag:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; transition: all 0.2s; background: var(--white); }
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }

/* Events page */
.featured-event { background: linear-gradient(135deg, var(--navy), var(--crimson)); border-radius: 20px; padding: 50px; margin-bottom: 40px; position: relative; overflow: hidden; }
.featured-event::before { content: ''; position: absolute; right: -40px; top: -40px; width: 300px; height: 300px; border-radius: 50%; background: rgba(200,146,42,0.08); }
.feat-tag { background: var(--gold); color: var(--navy); padding: 6px 16px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 16px; }
.featured-event h2 { font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 3.5vw, 2.4rem); color: var(--white); margin-bottom: 14px; }
.featured-event p { color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; margin-bottom: 24px; }
.event-details-row { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.detail-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.detail-item i { color: var(--gold-light); }

.events-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }
.event-card-full { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,146,42,0.12); transition: all 0.3s; }
.event-card-full:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.event-img { height: 200px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-img i { font-size: 4rem; color: rgba(200,146,42,0.25); }
.event-cat-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); padding: 4px 12px; border-radius: 15px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.event-date-badge { position: absolute; top: 14px; right: 14px; background: var(--navy); color: var(--gold-light); padding: 6px 12px; border-radius: 10px; text-align: center; font-family: 'Cinzel', serif; }
.event-date-badge .day { display: block; font-size: 1.3rem; font-weight: 900; line-height: 1; }
.event-date-badge .mon { display: block; font-size: 0.65rem; letter-spacing: 0.1em; }
.event-card-body { padding: 22px; }
.event-card-body h3 { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--navy) !important; margin-bottom: 10px; }
.event-card-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin-bottom: 16px; }
.register-btn { background: var(--navy); color: var(--gold-light); padding: 9px 20px; border-radius: 25px; font-size: 0.8rem; font-weight: 700; display: inline-block; transition: background 0.2s; }
.register-btn:hover { background: var(--gold); color: var(--navy); }

.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 20px; margin-top: 36px; }
.program-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: all 0.3s; }
.program-card:hover { background: rgba(200,146,42,0.08); border-color: var(--gold); }
.program-card .icon { font-size: 2rem; color: var(--gold-light); margin-bottom: 14px; }
.program-card h3 { font-family: 'Cinzel', serif; color: var(--white) !important; font-size: 0.95rem; margin-bottom: 8px; }
.program-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.65; margin-bottom: 10px; }
.program-card .schedule { color: var(--gold); font-size: 0.75rem; font-weight: 700; }

/* Contact page */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info h2 { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1rem; flex-shrink: 0; }
.info-text h4 { color: var(--navy); font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.info-text p, .info-text a { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.info-text a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid rgba(200,146,42,0.12); box-shadow: 0 10px 40px rgba(10,22,40,0.06); }
.contact-form h2 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid rgba(200,146,42,0.2); border-radius: 10px; font-size: 0.9rem; font-family: 'Lato', sans-serif; outline: none; transition: border-color 0.2s; background: var(--off-white); color: var(--text-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.submit-btn { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; padding: 14px 36px; border-radius: 40px; font-weight: 900; font-size: 0.9rem; cursor: pointer; font-family: 'Lato', sans-serif; letter-spacing: 0.06em; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.35); }
.prayer-banner { background: linear-gradient(135deg, var(--crimson), #5a0e0e); padding: 60px 0; text-align: center; }
.prayer-banner h2 { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.prayer-banner p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 24px; line-height: 1.75; }

/* Give page */
.give-methods { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; margin-top: 48px; }
.give-method-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; border: 1px solid rgba(200,146,42,0.15); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; text-align: center; }
.give-method-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.give-method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.give-method-card .icon { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold-light); }
.give-method-card h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--navy) !important; margin-bottom: 10px; }
.give-method-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; margin-bottom: 22px; }
.account-box { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: left; margin-top: 16px; }
.account-box p { color: var(--text-body); font-size: 0.85rem; margin-bottom: 6px; }
.account-box span { font-weight: 700; color: var(--navy); }

/* Sermons page */
.sermons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-top: 40px; }
.sermon-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,146,42,0.12); transition: all 0.3s; }
.sermon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sermon-thumb { height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sermon-play { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,146,42,0.9); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.2rem; transition: transform 0.2s; }
.sermon-card:hover .sermon-play { transform: scale(1.1); }
.sermon-type { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 15px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.sermon-body { padding: 20px; }
.sermon-body h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--navy) !important; margin-bottom: 8px; line-height: 1.4; }
.sermon-body .meta { display: flex; gap: 12px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.sermon-body .meta i { color: var(--gold); }
.sermon-body p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* Books page */
.books-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 28px; margin-top: 40px; }
.book-full-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,146,42,0.12); transition: all 0.3s; }
.book-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.book-full-cover { height: 260px; background: linear-gradient(160deg, var(--crimson), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(200,146,42,0.4); overflow: hidden; position: relative; }
.book-full-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-full-body { padding: 20px; }
.book-full-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy) !important; margin-bottom: 6px; line-height: 1.4; }
.book-full-body .author { color: var(--gold); font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; }
.book-full-body p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.65; margin-bottom: 14px; }
.book-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.book-btn { padding: 7px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; transition: all 0.2s; }
.book-btn.buy { background: var(--gold); color: var(--navy); }
.book-btn.buy:hover { background: var(--gold-light); }
.book-btn.preview { background: var(--off-white); border: 1px solid var(--border); color: var(--navy); }
.book-btn.preview:hover { background: var(--navy); color: var(--white); }

/* Apostle page */
.apostle-page-inner { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; padding: 80px 0; }
.apostle-page-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 20px 20px 60px rgba(10,22,40,0.15); }
.apostle-page-photo img { width: 100%; border-radius: 20px; display: block; }
.apostle-page-bio p { color: var(--text-body); line-height: 1.9; margin-bottom: 16px; font-size: 0.97rem; }
.apostle-page-bio h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:none; } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes tickerScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .apostle-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .apostle-page-inner { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .activity-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; justify-content: center; }
  .about-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-item .num { font-size: 1.6rem; }
  .platforms { flex-direction: column; align-items: center; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr !important; text-align: center; gap: 28px; }
  .hero-text-col { align-items: center; order: 2; }
  .hero-pastor-col { order: 1; justify-content: center; }
  .hero-pastor-col img { max-width: 220px; border-radius: 50%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; }
  .hero h1 span, .hero h2 span { white-space: normal; }
  .hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero .container { padding-left: 20px; padding-right: 20px; }
  .hero-pastor-col img { max-width: 160px; }
  .hero-stats { gap: 16px; }
}

/* ══ HERO MOBILE FIX ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { overflow-x: hidden; min-height: unset; padding: 60px 0 40px; }
  .hero .container { padding-left: 20px; padding-right: 20px; overflow: hidden; }
  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-text-col { align-items: center !important; order: 2; width: 100%; }
  .hero-pastor-col { order: 1; justify-content: center; width: 100%; }
  .hero-pastor-col img {
    max-width: 200px !important;
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: top center !important;
    margin: 0 auto;
  }
  .hero h1, .hero h2 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; white-space: normal !important; }
  .hero h1 span, .hero h2 span { white-space: normal !important; font-size: inherit !important; }
  .hero-badge { max-width: 90vw !important; white-space: normal !important; text-align: center; justify-content: center; }
  .hero-btns { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-verse { text-align: left; margin: 16px auto; max-width: 90%; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 32px; }
  .hero .container { padding-left: 16px; padding-right: 16px; }
  .hero-pastor-col img { max-width: 160px !important; width: 160px !important; height: 160px !important; }
  .hero h1, .hero h2 { font-size: clamp(1.4rem, 7vw, 2rem) !important; }
  .hero-stats { gap: 12px; }
  .stat-item .num { font-size: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
}

/* prevent any element from breaking out of viewport */
body { overflow-x: hidden !important; }
* { min-width: 0; }

/* ── Hamburger active (X) animation ─────────────────────────── */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown arrow indicator ────────────────────────── */

/* ── Mobile nav override (guaranteed) ── */

/* ── Mobile Nav (clean) ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    gap: 2px;
    z-index: 1000;
    border-top: 2px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }

  nav ul.open {
    display: flex !important;
  }

  nav ul > li {
    width: 100%;
  }

  nav ul > li > a {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  nav ul li:hover .dropdown {
    display: none;
  }

  nav ul .dropdown {
    display: none;
    position: static !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: unset;
    width: 100%;
    padding-left: 16px;
    background: rgba(255,255,255,0.05);
  }

  nav ul .dropdown.open {
    display: block !important;
  }

  nav ul .dropdown li a {
    font-size: 0.78rem;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
  }

  header {
    position: relative;
  }
}

/* ═══════════════════════════════════════════════════
   LIGHT MODE FIXES
═══════════════════════════════════════════════════ */

/* About/Vision cards — fix invisible text on light bg */
.about-card {
  background: var(--white) !important;
  border: 1px solid rgba(200,146,42,0.25) !important;
  box-shadow: 0 4px 20px rgba(10,22,40,0.08);
}
.about-card:hover {
  background: var(--gold-pale) !important;
  border-color: var(--gold) !important;
}
.about-card h4 {
  color: var(--navy) !important;
  font-size: 0.92rem;
}
.about-card p {
  color: var(--text-body) !important;
}
.about-card .icon {
  color: var(--gold) !important;
}

/* Who We Are section background — make it clearly distinct */
.about-section, section:has(.about-cards) {
  background: var(--off-white);
}

/* Fix h3 gold color being too bright/invisible in light sections */
/* h3 color handled per-theme below */

/* Scripture banner text contrast */
.scripture-banner blockquote {
  color: var(--white) !important;
}

/* Section titles in light mode */
.section-title {
  color: var(--navy) !important;
}

/* Top bar — keep dark always */
.top-bar {
  background: var(--navy) !important;
}

/* Hero section — keep dark always */
.hero, .page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%) !important;
}
.hero h1, .hero h2, .hero h3,
.page-hero h1, .page-hero h2, .page-hero h3 {
  color: var(--white) !important;
}
.page-hero p, .page-hero .breadcrumb,
.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.75) !important;
}
.page-hero .breadcrumb a {
  color: var(--gold-light) !important;
}

/* Cards with white bg — ensure visible borders and shadows */
.arm-card, .service-card, .event-card, .blog-card, .book-card, .sermon-card {
  box-shadow: 0 4px 20px rgba(10,22,40,0.08) !important;
  border: 1px solid rgba(200,146,42,0.15) !important;
}

/* Give Now button always readable */
.nav-cta {
  color: var(--navy) !important;
}

/* Fix card headings in arm/ministry cards */
.arm-card h3 {
  color: var(--navy) !important;
}

/* Footer always dark */
footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.75) !important;
}

/* ═══════════════════════════════════════════════════
   MUSIC CARDS — Rebuilt
═══════════════════════════════════════════════════ */
.music-preview {
  background: linear-gradient(160deg, var(--navy) 0%, #0d1f3c 100%);
  padding: 80px 0;
}

.music-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.music-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.music-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: var(--gold);
}

/* Cover */
.music-card-cover {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #0d1f3c, #1a3a6b);
  overflow: hidden;
  flex-shrink: 0;
}
.music-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.music-card:hover .music-card-cover img {
  transform: scale(1.06);
}
.music-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
}

/* Overlay play button */
.music-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.music-card:hover .music-card-overlay {
  opacity: 1;
}
.music-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(200,146,42,0.5);
  transition: transform 0.2s;
}
.music-play-btn:hover { transform: scale(1.1); }

/* Card body */
.music-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.music-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 4px;
  line-height: 1.3;
}
.music-card-artist {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

/* Stream buttons */
.music-card-streams {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.music-stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--btn-color, #555);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.music-stream-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: #fff;
}
.music-stream-btn i { font-size: 0.72rem; }

/* Permalink */
.music-card-permalink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(200,146,42,0.6);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.music-card-permalink:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 1024px) {
  .music-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .music-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .music-card-body { padding: 12px; }
  .music-card-title { font-size: 0.8rem; }
  .music-stream-btn span { display: none; }
  .music-stream-btn { padding: 6px 8px; border-radius: 50%; width: 30px; height: 30px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   LIGHT MODE — Full Theme Override
   Applied when <html data-theme="light">
═══════════════════════════════════════════════════ */

[data-theme="light"] {
  --navy:      #0a1628;
  --navy-mid:  #122244;
  --gold:      #b8730a;
  --gold-light:#c8922a;
  --gold-pale: #fdf3e3;
  --white:     #ffffff;
  --off-white: #f5f2eb;
  --text-dark: #0a1628;
  --text-body: #2d3748;
  --text-muted:#6b7280;
  --border:    rgba(184,115,10,0.2);
  --card-bg:   #ffffff;
  --card-border: rgba(184,115,10,0.15);
}

/* ── Body & Base ── */
[data-theme="light"] body {
  background: #f5f2eb;
  color: #2d3748;
}

/* ── Music preview section — keep dark always ── */
[data-theme="light"] .music-preview {
  background: linear-gradient(160deg, #0a1628 0%, #122244 100%) !important;
}

/* ── Music card body — keep dark card bg ── */
[data-theme="light"] .music-card {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(200,146,42,0.25) !important;
}
[data-theme="light"] .music-card-title {
  color: #ffffff !important;
}
[data-theme="light"] .music-card-artist {
  color: rgba(255,255,255,0.6) !important;
}
[data-theme="light"] .music-card-permalink {
  color: rgba(200,146,42,0.7) !important;
  border-top-color: rgba(255,255,255,0.08) !important;
}

/* ── Remove white box (browser autofill / audio default bg) ── */
[data-theme="light"] audio {
  color-scheme: dark;
  background: transparent !important;
}
[data-theme="light"] input:-webkit-autofill,
[data-theme="light"] input:-webkit-autofill:hover,
[data-theme="light"] input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #f5f2eb inset !important;
  -webkit-text-fill-color: #2d3748 !important;
}

/* ── Header & Nav — keep dark always ── */
[data-theme="light"] header,
[data-theme="light"] .top-bar {
  background: #0a1628 !important;
}
[data-theme="light"] nav ul li a {
  color: rgba(255,255,255,0.85) !important;
}
[data-theme="light"] nav ul li a:hover,
[data-theme="light"] nav ul li a.active {
  color: var(--gold-light) !important;
}
[data-theme="light"] nav ul .dropdown {
  background: #0a1628 !important;
}

/* ── Hero — keep dark always ── */
[data-theme="light"] .hero,
[data-theme="light"] .page-hero {
  background: linear-gradient(160deg, #0a1628 0%, #122244 100%) !important;
}
[data-theme="light"] .hero h1,
[data-theme="light"] .hero h2,
[data-theme="light"] .hero h3,
[data-theme="light"] .page-hero h2,
[data-theme="light"] .page-hero p {
  color: #ffffff !important;
}
[data-theme="light"] .page-hero .breadcrumb a { color: var(--gold-light) !important; }
[data-theme="light"] .page-hero .breadcrumb span { color: rgba(255,255,255,0.6) !important; }

/* ── Scripture banner — keep dark ── */
[data-theme="light"] .scripture-banner {
  background: linear-gradient(135deg, #0a1628, #122244) !important;
}
[data-theme="light"] .scripture-banner blockquote,
[data-theme="light"] .scripture-banner cite {
  color: #ffffff !important;
}

/* ── About cards ── */
[data-theme="light"] .about-card {
  background: #ffffff !important;
  border: 1px solid rgba(184,115,10,0.2) !important;
  box-shadow: 0 4px 16px rgba(10,22,40,0.07) !important;
}
[data-theme="light"] .about-card h4 { color: #0a1628 !important; }
[data-theme="light"] .about-card p  { color: #4a5568 !important; }
[data-theme="light"] .about-card .icon { color: #b8730a !important; }

/* ── Section titles ── */
[data-theme="light"] .section-title { color: #0a1628 !important; }
[data-theme="light"] .section-label { color: #b8730a !important; }
[data-theme="light"] h3 { color: #0a1628 !important; }

/* ── General cards (sermons, events, blog, books) ── */
[data-theme="light"] .sermon-card,
[data-theme="light"] .event-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .book-card,
[data-theme="light"] .arm-card,
[data-theme="light"] .testi-card,
[data-theme="light"] .post-card {
  background: #ffffff !important;
  border: 1px solid rgba(184,115,10,0.12) !important;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06) !important;
}
[data-theme="light"] .arm-card h3,
[data-theme="light"] .sermon-card h3,
[data-theme="light"] .event-card h3,
[data-theme="light"] .blog-card h3,
[data-theme="light"] .book-card h3 { color: #0a1628 !important; }

/* ── Give section ── */
[data-theme="light"] .give-method-card {
  background: #ffffff !important;
  border: 1px solid rgba(184,115,10,0.12) !important;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06) !important;
}

/* ── Ticker ── */
[data-theme="light"] .ticker-wrap { background: #b8730a !important; }

/* ── Footer — keep dark always ── */
[data-theme="light"] footer {
  background: #0a1628 !important;
  color: rgba(255,255,255,0.75) !important;
}
[data-theme="light"] footer h4,
[data-theme="light"] footer h3 { color: #ffffff !important; }
[data-theme="light"] footer a   { color: rgba(255,255,255,0.6) !important; }
[data-theme="light"] footer a:hover { color: var(--gold-light) !important; }

/* ── Newsletter section ── */
[data-theme="light"] .newsletter-section,
[data-theme="light"] .music-newsletter {
  background: linear-gradient(135deg, #0a1628, #122244) !important;
}
[data-theme="light"] .newsletter-section h2,
[data-theme="light"] .newsletter-section p { color: #ffffff !important; }

/* ── White box fix — any remaining transparent bg on dark sections ── */
[data-theme="light"] .music-preview *:not(a):not(button):not(img):not(i):not(span) {
  /* no background override */
}
[data-theme="light"] .music-preview .music-card { background: rgba(255,255,255,0.06) !important; }
[data-theme="light"] .music-preview .music-card-body { background: transparent !important; }
[data-theme="light"] .music-preview .music-card-meta { background: transparent !important; }
[data-theme="light"] .music-preview .music-card-streams { background: transparent !important; }
[data-theme="light"] .music-preview p { color: rgba(255,255,255,0.6) !important; }
[data-theme="light"] .music-preview h3 { color: #ffffff !important; }
[data-theme="light"] .music-preview .section-label { color: var(--gold-light) !important; }

