/*
Theme Name: RBN Church Theme
Theme URI: https://example.com/awakenur
Author: Riverina Baptist Network
Author URI: https://example.com
Description: A modern church WordPress theme built for RBN Church. Features a full-featured Customizer with live preview, a complete admin options page, sermons &amp; events content types, carousels, newsletter form, and is fully responsive.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: awakenur
Tags: custom-colors, custom-logo, custom-menu, featured-images, one-column, rtl-language-support, translation-ready
*/

/* ============================================================
   1. DESIGN TOKENS & RESET
   ============================================================ */
:root {
  --orange: #C5A059;
  --orange-hover: #B38E46;
  --gold: #C5A059;
  --gold-hover: #D4AF37;
  --green: #1E3A8A;
  --green-dark: #0B192C;
  --navy: #0B192C;
  --navy-2: #06101E;
  --ink: #1E293B;
  --muted: #64748B;
  --paper: #ffffff;
  --bg-soft: #F8FAFC;
  --footer: #06101E;
  --radius: 14px;
  --shadow-sm: 0 6px 20px rgba(0,0,0,.08);
  --shadow-md: 0 14px 40px rgba(0,0,0,.16);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.28);
  --font-body: 'Poppins', sans-serif;
  --font-head: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.blog {
  padding: 0;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container { width: min(1240px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; }

/* ============================================================
   2. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
  line-height: 1;
}
.btn:hover { transform: translateY(-3px); }

.btn-orange { background: linear-gradient(135deg, var(--gold), #D4AF37); color: #0B192C; box-shadow: 0 10px 24px rgba(197,160,89,.35); font-weight: 700; }
.btn-orange:hover { background: linear-gradient(135deg, #D4AF37, #B38E46); color: #0B192C; box-shadow: 0 14px 30px rgba(197,160,89,.5); }

.btn-green { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(11,25,44,.3); }
.btn-green:hover { background: #1E293B; }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-navy { background: #1E3A8A; color: #fff; box-shadow: 0 10px 24px rgba(30,58,138,.35); }
.btn-navy:hover { background: #1D4ED8; }

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.icon-btn:hover { background: var(--gold); border-color: var(--gold); color: #0B192C; transform: translateY(-3px); }
.icon-btn.dark {
  border-color: rgba(0,0,0,.25);
  background: #fff;
  color: #111;
  box-shadow: var(--shadow-sm);
}
.icon-btn.dark:hover { background: var(--gold); border-color: var(--gold); color: #0B192C; }

/* ============================================================
   3. SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(11, 25, 44, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.topbar {
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: max-height .35s ease, opacity .35s ease, padding .35s ease;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 8px 0; }
.topbar-info { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; letter-spacing: .01em; }
.topbar-info svg { flex: 0 0 auto; opacity: .9; color: var(--gold); }
.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.topbar-social a:hover { background: var(--gold); color: #0B192C; transform: translateY(-2px); }

.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #D4AF37);
  display: flex; align-items: center; justify-content: center;
  color: #0B192C;
  box-shadow: 0 8px 20px rgba(197,160,89,.35);
  flex: 0 0 auto;
  overflow: hidden;
}
.logo-mark img, .custom-logo { max-height: 44px; width: auto; height: auto; object-fit: contain; }
.custom-logo-link { display: inline-flex; align-items: center; }
.logo-text { font-family: var(--font-head); font-size: 1.65rem; font-weight: 700; color: #fff; letter-spacing: .02em; }
.logo-text em { font-style: italic; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li, .nav-links .menu-item { position: relative; list-style: none; }
.nav-links > li > a, .nav-links .menu-item > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 8px;
  transition: color .25s ease, background .25s ease;
}
.nav-links > li > a:hover,
.nav-links .menu-item > a:hover,
.nav-links > li.current-menu-item > a,
.nav-links .current-menu-item > a,
.nav-links > li.current_page_item > a,
.nav-links > li.active > a { color: var(--gold); background: rgba(255,255,255,.05); }
.nav-links > li > a .caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s ease; margin-left: 2px; }
.nav-links > li:hover > a .caret { transform: rotate(225deg) translateY(-1px); }

/* Header Dropdown Menu (supports custom markup & native WP sub-menu) */
.menu-item-has-children, .nav-links > li.has-dropdown {
  position: relative;
}
.menu-item-has-children::after, .nav-links > li.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 1099;
}
.dropdown-menu, .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: rgba(11, 25, 44, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .25s cubic-bezier(.16,1,.3,1), transform .25s cubic-bezier(.16,1,.3,1), visibility .25s;
  z-index: 1100;
  list-style: none;
}
.dropdown-menu li, .sub-menu li {
  position: relative;
  list-style: none;
  margin-bottom: 2px;
  width: 100%;
  display: block;
}
.dropdown-menu li:last-child, .sub-menu li:last-child {
  margin-bottom: 0;
}
.dropdown-menu a, .sub-menu a,
.dropdown-menu li > a, .sub-menu li > a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, padding-left .25s ease;
}
.dropdown-menu a:hover, .sub-menu a:hover,
.dropdown-menu li > a:hover, .sub-menu li > a:hover,
.dropdown-menu li.current-menu-item > a, .sub-menu li.current-menu-item > a {
  background: rgba(197, 160, 89, 0.16);
  color: var(--gold);
  padding-left: 24px;
}

/* Multi-tier nested dropdowns */
.sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 4px;
}

.nav-links > li:hover > .dropdown-menu,
.nav-links .menu-item-has-children:hover > .sub-menu,
.nav-links > li:focus-within > .dropdown-menu,
.nav-links .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Submenu Accordion Toggles */
.mobile-dropdown-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 990px) {
  .mobile-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .menu-item-has-children, .nav-links > li.has-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .menu-item-has-children > a, .nav-links > li.has-dropdown > a {
    flex: 1;
  }
  .dropdown-menu, .sub-menu {
    position: static !important;
    width: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    transition: max-height .35s ease, opacity .35s ease, padding .35s ease !important;
    padding: 0 10px !important;
    background: rgba(6, 16, 30, 0.95) !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--gold) !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  .mobile-submenu-open > .dropdown-menu,
  .mobile-submenu-open > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 500px !important;
    padding: 10px !important;
  }
}

.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-donate { background: linear-gradient(135deg, var(--gold), #D4AF37); color: #0B192C; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; padding: 12px 24px; border: none; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 24px rgba(197,160,89,.35); transition: transform .25s ease, box-shadow .25s ease; }
.btn-donate:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(197,160,89,.5); color: #0B192C; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  padding: 9px;
  transition: background .25s ease;
}
.hamburger span { height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   4. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -132px;
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,18,.62) 0%, rgba(8,12,18,.45) 45%, rgba(8,12,18,.78) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 200px 20px 120px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .8rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-kicker::before, .hero-kicker::after { content: ""; width: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-content h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,.92);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hero-arrow { position: absolute; top: 50%; z-index: 3; transform: translateY(-50%); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

.hero-dots {
  position: absolute; bottom: 34px; left: 50%; z-index: 3;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  transition: width .3s ease, background .3s ease;
  padding: 0;
}
.hero-dots button.active { width: 30px; border-radius: 999px; background: var(--orange); }

/* ============================================================
   5. WELCOME / ABOUT
   ============================================================ */
.welcome { padding: 110px 0 120px; background: #fff; position: relative; }
.welcome-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }

.welcome-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; }
.welcome-gallery .g-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.welcome-gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.welcome-gallery .g-item:hover img { transform: scale(1.08); }
.welcome-gallery .g-item.a { aspect-ratio: 4 / 5; }
.welcome-gallery .g-item.b { aspect-ratio: 4 / 5; margin-top: 42px; }
.welcome-gallery .g-item.c { aspect-ratio: 4 / 5; margin-bottom: 42px; }
.welcome-gallery .g-item.d { aspect-ratio: 4 / 5; }

.welcome-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 16px 36px rgba(230,126,34,.45);
  border: 6px solid #fff;
  line-height: 1.1;
}
.welcome-badge strong { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
.welcome-badge span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }

.welcome-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); font-size: .8rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 18px; }
.welcome-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--orange); }

.welcome-copy h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 8px; }
.welcome-copy .green-title { color: var(--accent_color, #1E3A8A); }
.welcome-copy > p { color: var(--muted); margin-bottom: 14px; font-size: .98rem; }
.welcome-copy .lead { font-size: 1.05rem; color: #444; }
.welcome-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.welcome-leaf {
  position: absolute; right: 3%; bottom: 6%;
  width: 130px; height: 130px;
  opacity: .5;
  color: var(--green);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-14px) rotate(6deg)} }

/* ============================================================
   6. MINISTRIES
   ============================================================ */
.ministries { padding: 110px 0 120px; background: linear-gradient(180deg, #0d1412, #101a15); color: #fff; overflow: hidden; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 14px; color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 16px; }
.section-head .eyebrow::before, .section-head .eyebrow::after { content: ""; width: 40px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); color: var(--navy); }
.section-head p { color: var(--muted); margin-top: 12px; max-width: 560px; margin-inline: auto; }

/* Dark section overrides for section headings */
.ministries .section-head h2,
.sermons .section-head h2,
.worship-cta .section-head h2,
.dark-section .section-head h2 {
  color: #ffffff;
}
.ministries .section-head p,
.sermons .section-head p,
.worship-cta .section-head p,
.dark-section .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.carousel { position: relative; }
.carousel-viewport { overflow: hidden; margin: 0 -10px; }
.carousel-track {
  display: flex;
  gap: 26px;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  padding: 10px;
  will-change: transform;
}

.min-card {
  flex: 0 0 calc(33.333% - 18px);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  isolation: isolate;
}
.min-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.min-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.9) 100%);
  transition: background .4s ease;
}
.min-card:hover img { transform: scale(1.08); }
.min-card:hover::after { background: linear-gradient(180deg, rgba(230,126,34,.15) 0%, rgba(0,0,0,.88) 100%); }
.min-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px;
}
.min-card-body h3 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.min-card-body .learn-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, color .25s ease;
}
.min-card:hover .learn-more { opacity: 1; transform: translateY(0); }
.min-card .learn-more:hover { color: #fff; }

.carousel-controls { display: flex; justify-content: center; gap: 14px; margin-top: 44px; }
.carousel-controls .icon-btn.dark { width: 46px; height: 46px; }

.ministries .btn-wrap { text-align: center; margin-top: 46px; }

/* ============================================================
   7. BLOG
   ============================================================ */
section.blog-section { padding: 110px 0 120px; background: var(--bg-soft); }
section.blog-section .section-head h2 { color: var(--ink); }
section.blog-section .section-head p { color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }

.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: #fff;
}
.feature-card > img { width: 100%; height: 460px; object-fit: cover; transition: transform .7s ease; }
.feature-card:hover > img { transform: scale(1.05); }
.feature-card .feature-body { padding: 30px 30px 34px; }
.feature-card .date-badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  width: 68px; height: 74px;
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(230,126,34,.4);
  text-transform: uppercase;
}
.feature-card .date-badge strong { font-family: var(--font-head); font-size: 1.35rem; }
.feature-card .date-badge span { font-size: .68rem; letter-spacing: .12em; }
.feature-card h3 { font-size: 1.55rem; margin-bottom: 14px; color: var(--ink); transition: color .25s ease; }
.feature-card:hover h3 { color: var(--orange); }
.feature-card-link { position: absolute; inset: 0; z-index: 3; }
.feature-meta { display: flex; align-items: center; gap: 18px; font-size: .82rem; color: var(--muted); }
.feature-meta span { display: inline-flex; align-items: center; gap: 7px; }
.feature-meta .author-dot { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

.post-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  position: relative;
}
.post-card + .post-card { margin-top: 18px; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-link { position: absolute; inset: 0; z-index: 2; }
.post-card .thumb { border-radius: 10px; overflow: hidden; height: 92px; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .thumb img { transform: scale(1.1); }
.post-card .post-cat { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.post-card h4 { font-size: .98rem; color: var(--ink); line-height: 1.4; transition: color .25s ease; }
.post-card:hover h4 { color: var(--orange); }
.post-card .post-meta { display: flex; align-items: center; gap: 14px; margin-top: 8px; font-size: .78rem; color: var(--muted); }

/* ============================================================
   8. SERMONS
   ============================================================ */
.sermons { padding: 110px 0 120px; background: linear-gradient(180deg, var(--navy), var(--navy-2)); color: #fff; overflow: hidden; }
.sermons-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 70px; }
.sermons-copy .eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 16px; }
.sermons-copy .eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.sermons-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 20px; }
.sermons-copy p { color: rgba(255,255,255,.62); max-width: 480px; margin-bottom: 30px; }

.sermon-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.sermon-image img { width: 100%; height: 440px; object-fit: cover; transition: transform .7s ease; }
.sermon-image:hover img { transform: scale(1.05); }
.sermon-feat-link { display: block; position: relative; width: 100%; height: 100%; text-decoration: none; color: #fff; }
.sermon-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,25,44,0.15) 20%, rgba(11,25,44,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  transition: background .3s ease;
}
.sermon-feat-link:hover .sermon-feat-overlay {
  background: linear-gradient(180deg, rgba(11,25,44,0.25) 10%, rgba(11,25,44,0.95) 100%);
}
.feat-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.feat-series-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0B192C;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.feat-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
}
.badge-duration {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11,25,44,.85);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197,160,89,.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 4;
}
.feat-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}
.feat-speaker {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.feat-speaker strong {
  color: var(--gold);
}
.sermon-image .play-big {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(197,160,89,.9);
  display: flex; align-items: center; justify-content: center;
  color: #0B192C;
  box-shadow: 0 0 0 12px rgba(255,255,255,.18);
  transition: transform .3s ease, background .3s ease;
  z-index: 3;
}
.sermon-image:hover .play-big { transform: translate(-50%,-50%) scale(1.1); background: var(--gold); }

.sermon-card-feat-style {
  flex: 0 0 calc(33.333% - 18px);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
  height: 380px;
  border: 1px solid rgba(255,255,255,.1);
}
.sermon-card-feat-style:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(0,0,0,.5);
  border-color: var(--gold);
}
.sermon-card-feat-style .sermon-feat-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.sermon-card-feat-style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.sermon-card-feat-style:hover img {
  transform: scale(1.08);
}
.sermon-card-feat-style .sermon-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,25,44,0.1) 20%, rgba(11,25,44,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
  transition: background .35s ease;
}
.sermon-card-feat-style:hover .sermon-feat-overlay {
  background: linear-gradient(180deg, rgba(11,25,44,0.2) 10%, rgba(11,25,44,0.96) 100%);
}
.sermon-card-feat-style .feat-series-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0B192C;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.sermon-card-feat-style .feat-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}
.sermon-card-feat-style .feat-speaker {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
}
.sermon-card-feat-style .feat-speaker strong {
  color: var(--gold);
}
.sermon-card-feat-style .play-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(197,160,89,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B192C;
  box-shadow: 0 0 0 8px rgba(255,255,255,.18);
  transition: transform .3s ease, background .3s ease;
  z-index: 3;
}
.sermon-card-feat-style:hover .play-big {
  transform: translate(-50%,-50%) scale(1.12);
  background: var(--gold);
}

/* ============================================================
   9. EVENTS
   ============================================================ */
.events { padding: 110px 0 120px; background: #fff; }
.events .section-head h2 { color: var(--navy); }
.events .section-head .script { font-family: var(--font-script); color: var(--gold); font-size: 2.4rem; display: block; line-height: 1; margin-top: 6px; transform: rotate(-2deg); }

.event-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.event-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.event-card .e-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.event-card .e-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.event-card:hover .e-img img { transform: scale(1.08); }
.event-card .e-date {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: rgba(230,126,34,.95);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.event-card .e-body { padding: 26px; }
.event-card .e-cat { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.event-card h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 10px; transition: color .25s ease; }
.event-card:hover h3 { color: var(--orange); }
.event-card .e-time { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.event-card p { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.event-card .e-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.event-card .e-link .arrow { transition: transform .25s ease; }
.event-card:hover .e-link .arrow { transform: translateX(5px); }

.no-events-box {
  background: var(--bg-soft);
  border: 2px dashed rgba(197,160,89,.3);
  border-radius: var(--radius);
  padding: 50px 30px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}
.no-events-box .icon-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(197,160,89,.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.no-events-box p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.events .btn-wrap { text-align: center; margin-top: 52px; }

/* ============================================================
   10. WORSHIP CTA
   ============================================================ */
.worship-cta {
  position: relative;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  padding: 130px 0;
  color: #fff;
  text-align: center;
}
.worship-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,24,.82), rgba(10,16,24,.72)); }
.worship-cta .container { position: relative; z-index: 2; }
.worship-cta .eyebrow { display: inline-flex; align-items: center; gap: 14px; color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 18px; }
.worship-cta .eyebrow::before, .worship-cta .eyebrow::after { content: ""; width: 40px; height: 1px; background: var(--gold); }
.worship-cta h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin-bottom: 18px; }
.worship-cta p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 38px; font-weight: 300; }
.worship-cta .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   11. PRAYER
   ============================================================ */
.prayer { padding: 110px 0 120px; background: #fff; }
.prayer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.prayer-visual { position: relative; }
.prayer-visual .main-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.prayer-visual .main-photo img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.prayer-visual .inset-photo {
  position: absolute; right: -30px; bottom: -40px;
  width: 46%;
  border: 8px solid #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  transition: transform .4s ease;
}
.prayer-visual .inset-photo:hover { transform: rotate(0) scale(1.03); }
.prayer-visual .inset-photo img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; }
.prayer-visual .prayer-stamp {
  position: absolute; top: -26px; left: -26px;
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(230,126,34,.4);
  animation: float 5s ease-in-out infinite;
}

.prayer-copy .eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); font-size: .8rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 18px; }
.prayer-copy .eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
.prayer-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 20px; color: var(--navy); }
.prayer-copy p { color: var(--muted); margin-bottom: 14px; max-width: 520px; }
.prayer-copy .btn { margin-top: 12px; }

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer { background: var(--footer); color: rgba(255,255,255,.75); padding-top: 90px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--gold), var(--green), var(--orange)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1.2fr 1fr 1fr; gap: 50px; padding-bottom: 70px; }

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { font-size: 1.5rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 22px; max-width: 320px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .88rem; }
.footer-contact svg { color: var(--gold); flex: 0 0 auto; }
.footer-contact a:hover { color: var(--gold); }

.footer h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--orange); border-radius: 2px; }

.newsletter-form { margin-top: 4px; }
.newsletter-form .field { position: relative; margin-bottom: 12px; }
.newsletter-form input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: .88rem;
  transition: border-color .25s ease, background .25s ease;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--orange); background: rgba(255,255,255,.1); }
.newsletter-form .btn-subscribe { width: 100%; background: #111; color: #fff; border: none; border-radius: 10px; padding: 13px 16px; font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: background .25s ease, transform .25s ease; }
.newsletter-form .btn-subscribe:hover { background: var(--orange); transform: translateY(-2px); }
.newsletter-success { color: #7ee2a8; font-size: .85rem; margin-top: 8px; display: none; }

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); display: inline-flex; align-items: center; gap: 8px; transition: color .25s ease, padding-left .25s ease; }
.footer-links a::before { content: "›"; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.work-time li { display: flex; justify-content: space-between; gap: 16px; font-size: .88rem; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.work-time li:last-child { border-bottom: none; }
.work-time li span { color: var(--gold); font-weight: 500; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom nav a { transition: color .25s ease; }
.footer-bottom nav a:hover { color: var(--gold); }

/* ============================================================
   13. CONTENT PAGES / POSTS / SIDEBAR
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 160px 0 90px;
  margin-top: -132px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero .crumbs { margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.65); }
.page-hero .crumbs a:hover { color: var(--gold); }

.content-wrap { padding: 90px 0 110px; background: #fff; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 60px; align-items: start; }

.entry-title { font-size: 2.2rem; color: var(--ink); margin-bottom: 18px; }
.entry-content { font-size: 1rem; color: #444; }
.entry-content > * { margin-bottom: 1.15em; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--ink); margin: 1.4em 0 .6em; }
.entry-content a { color: var(--orange); text-decoration: underline; }
.entry-content a:hover { color: var(--orange-hover); }
.entry-content img { border-radius: var(--radius); height: auto; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin-bottom: 1.15em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote { border-left: 4px solid var(--orange); background: var(--bg-soft); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: #555; }
.entry-content .alignleft { float: left; margin: .4em 1.4em 1em 0; }
.entry-content .alignright { float: right; margin: .4em 0 1em 1.4em; }
.entry-content .aligncenter { margin: 1.2em auto; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content td, .entry-content th { border: 1px solid #e5e5e5; padding: 10px 12px; }
.entry-content th { background: var(--bg-soft); }

.entry-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .85rem; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid #eee; }
.entry-meta a:hover { color: var(--orange); }

.post-nav { display: flex; justify-content: space-between; gap: 20px; margin: 44px 0; padding: 22px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; font-size: .9rem; }
.post-nav a:hover { color: var(--orange); }

.sidebar .widget { background: var(--bg-soft); border-radius: var(--radius); padding: 26px; margin-bottom: 26px; }
.sidebar .widget-title { font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; color: var(--ink); position: relative; padding-bottom: 12px; }
.sidebar .widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--orange); }
.sidebar ul li { margin-bottom: 10px; }
.sidebar ul li a { color: #555; transition: color .2s ease, padding-left .2s ease; }
.sidebar ul li a:hover { color: var(--orange); padding-left: 4px; }
.sidebar ul li ul { padding-left: 14px; margin-top: 8px; }
.sidebar input[type="text"], .sidebar input[type="search"], .sidebar input[type="email"], .sidebar select, .sidebar textarea {
  width: 100%; border: 1px solid #ddd; background: #fff; border-radius: 8px; padding: 11px 14px; font-family: inherit; font-size: .9rem; outline: none;
}
.sidebar input:focus { border-color: var(--orange); }
.sidebar .search-form { display: flex; gap: 8px; }
.sidebar .search-form input[type="submit"], .search-submit { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 11px 18px; cursor: pointer; font-weight: 600; transition: background .2s ease; }
.sidebar .search-form input[type="submit"]:hover { background: var(--orange-hover); }

.pagination { margin-top: 60px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 10px; background: var(--bg-soft); color: var(--ink); font-weight: 500; transition: background .2s ease, color .2s ease; }
.pagination .page-numbers.current { background: var(--orange); color: #fff; }
.pagination .page-numbers:hover { background: var(--orange); color: #fff; }

.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.archive-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #eee; transition: transform .3s ease, box-shadow .3s ease; }
.archive-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.archive-card .a-thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.archive-card .a-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.archive-card:hover .a-thumb img { transform: scale(1.07); }
.archive-card .a-body { padding: 24px; }
.archive-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; transition: color .25s ease; }
.archive-card:hover h3 { color: var(--orange); }
.archive-card p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.archive-card .a-meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); }

.error-404 { text-align: center; padding: 40px 0; }
.error-404 .err-code { font-family: var(--font-head); font-size: clamp(5rem, 12vw, 9rem); color: var(--orange); line-height: 1; }
.error-404 h1 { color: var(--ink); margin: 10px 0 16px; }
.error-404 p { color: var(--muted); max-width: 480px; margin: 0 auto 30px; }

.comments-area { margin-top: 50px; }
.comments-title { font-size: 1.3rem; margin-bottom: 24px; }
.comment-list { margin-bottom: 30px; }
.comment-list .comment { margin-bottom: 20px; padding: 18px 22px; background: var(--bg-soft); border-radius: var(--radius); }
.comment-list .comment .comment-author { font-weight: 600; color: var(--ink); }
.comment-list .comment .comment-metadata { font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.comment-reply-link { color: var(--orange); font-size: .82rem; }
.comment-form label { display: block; margin-bottom: 4px; font-size: .85rem; color: #555; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; border: 1px solid #ddd; border-radius: 8px; padding: 11px 14px; font-family: inherit; outline: none; margin-bottom: 14px; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--orange); }
.comment-form .submit { background: var(--orange); color: #fff; border: none; border-radius: 999px; padding: 13px 28px; font-weight: 600; cursor: pointer; transition: background .2s ease; }
.comment-form .submit:hover { background: var(--orange-hover); }

/* ============================================================
   14. ACCESSIBILITY & UTILITIES
   ============================================================ */
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999999; background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.archive-desc { max-width: 760px; margin: 0 auto; padding: 26px 0 0; color: var(--muted); }
.search-query { color: var(--muted); margin-bottom: 34px; }
.feature-card .author-dot, .feature-meta img.avatar { border-radius: 50%; width: 30px; height: 30px; object-fit: cover; }

/* ============================================================
   15. REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .min-card { flex-basis: calc(50% - 13px); }
  .sermon-card { flex-basis: calc(33.333% - 18px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .topbar .container { justify-content: center; }
  .topbar-info { justify-content: center; gap: 14px; }
  .topbar-info .hide-md { display: none; }

  .navbar .container { padding: 14px 0; }
  .hamburger { display: flex; }
  .nav-actions .btn-donate { display: none; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(9,15,12,.98);
    backdrop-filter: blur(12px);
    padding: 12px 4%;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 40px rgba(0,0,0,.4);
    max-height: 0; overflow: hidden;
    transition: max-height .45s ease;
  }
  .nav-links.open { max-height: 560px; }
  .nav-links > li > a { padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,.05);
    max-height: 0; overflow: hidden; padding: 0 8px;
    transition: max-height .4s ease;
  }
  .nav-links > li.open .dropdown-menu { max-height: 260px; padding: 6px 8px; }
  .dropdown-menu a { color: rgba(255,255,255,.85); }
  .dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold); }

  .hero { margin-top: -116px; }
  .page-hero { margin-top: -116px; }
  .hero-arrow { display: none; }

  .welcome-grid, .sermons-top, .prayer-grid { grid-template-columns: 1fr; gap: 50px; }
  .blog-grid { grid-template-columns: 1fr; }
  .event-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .worship-cta { background-attachment: scroll; }
  .prayer-visual .inset-photo { right: 0; bottom: -24px; }
}

@media (max-width: 600px) {
  .topbar { display: none; }
  .hero { margin-top: -78px; }
  .page-hero { margin-top: -78px; padding-top: 120px; }
  .hero-content { padding-top: 150px; }
  .carousel-viewport { margin: 0; padding: 0 20px; }
  .carousel-track { padding: 0; }
  .min-card { flex-basis: 100%; }
  .sermon-card { flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .footer-bottom nav { justify-content: center; }
  .welcome-gallery { gap: 12px; }
  .welcome-badge { width: 92px; height: 92px; }
  .welcome-badge strong { font-size: 1.1rem; }
  .post-card { grid-template-columns: 96px 1fr; }
  .feature-card > img { height: 300px; }
  .btn { padding: 13px 22px; font-size: .76rem; }
  .welcome-btns { flex-direction: column; align-items: flex-start; }
  .archive-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   17. CHURCHCONNECT CUSTOM SINGLE & ARCHIVE TEMPLATES
   ============================================================ */

/* Single Event Header Hero */
.event-single-hero {
  background: linear-gradient(135deg, var(--navy), #1E293B);
  color: #fff;
  padding: 60px 0 50px;
  border-bottom: 3px solid var(--gold);
}
.event-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.badge-cat, .badge-series, .badge-online, .badge-scripture {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.badge-cat, .badge-series {
  background: var(--gold);
  color: #0B192C;
}
.badge-online {
  background: #2563EB;
  color: #fff;
}
.badge-scripture {
  background: rgba(255,255,255,.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.event-title, .sermon-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.event-quick-info, .sermon-details-line {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  flex-wrap: wrap;
}
.event-quick-info span, .sermon-details-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.event-quick-info svg, .sermon-details-line svg {
  color: var(--gold);
}

/* Event Single Body & Layout */
.event-single-body, .sermon-single-body {
  padding: 60px 0;
  background: var(--bg-soft);
}
.event-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.event-featured-media, .sermon-cover-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}
.event-featured-media img, .sermon-cover-media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.event-description, .sermon-main-text {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}
.event-description h2, .sermon-main-text h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-soft);
  padding-bottom: 10px;
}

/* Flow of the Night Timeline */
.event-flow-section, .event-feature-blurb, .event-map-section {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}
.event-flow-section h3, .event-feature-blurb h3, .event-map-section h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.flow-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.flow-item {
  position: relative;
  padding-left: 10px;
}
.flow-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.flow-time {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.flow-body h4 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.flow-body p {
  font-size: .9rem;
  color: var(--muted);
}

/* Feature Blurb & Gallery */
.feature-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.feature-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Map Section */
.map-location-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.map-preview {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.map-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}
.map-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Event Sidebar & Registration Box */
.event-info-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.event-info-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-soft);
}
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.info-content strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.info-content span {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
}
.meeting-link {
  color: #2563EB;
  font-weight: 600;
  font-size: .9rem;
}
.event-registration-box {
  background: var(--bg-soft);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  margin: 24px 0;
  text-align: center;
}
.event-registration-box h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.reg-sub {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.reg-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.price-tag.free {
  color: #16A34A;
}
.spots-tag {
  font-size: .78rem;
  background: #E2E8F0;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.reg-foot {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 10px;
}
.event-share {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-share strong {
  font-size: .85rem;
  color: var(--muted);
}
.share-buttons {
  display: flex;
  gap: 8px;
}
.share-buttons a, .sermon-share-inline a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.share-buttons a:hover, .sermon-share-inline a:hover {
  background: var(--gold);
  color: #0B192C;
}

/* Related Events / Sermons */
.related-events-section, .related-sermons-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(0,0,0,.06);
}
.related-events-section h2, .related-sermons-section h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 30px;
}

/* Single Sermon Styles */
.sermon-single-hero {
  background: linear-gradient(135deg, var(--navy), #06101E);
  color: #fff;
  padding: 60px 0 50px;
  border-bottom: 3px solid var(--gold);
}
.sermon-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sermon-media-container {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.sermon-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.sermon-video-wrapper iframe, .sermon-video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.sermon-audio-player {
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  border-top: 2px solid var(--gold);
}
.audio-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.custom-audio-elem {
  width: 100%;
  border-radius: 8px;
  outline: none;
}
.sermon-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: var(--bg-soft);
  border-top: 1px solid rgba(0,0,0,.06);
  flex-wrap: wrap;
  gap: 16px;
}
.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 10px 20px;
  font-size: .78rem;
}
.sermon-share-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
}
.sermon-content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  margin-bottom: 40px;
}
.sidebar-box {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.sidebar-box h3 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.sidebar-box h4 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.sidebar-box p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.link-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: color .2s ease;
}
.link-more:hover {
  color: var(--navy);
}

/* Archives & Filter Bar */
.archive-events-page, .archive-sermons-page, .taxonomy-series-page, .taxonomy-speaker-page, .taxonomy-event-cat-page {
  padding: 60px 0;
  background: var(--bg-soft);
}
.archive-filter-tabs, .sermons-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-item, .btn-filter {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-sm);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tab-item.active, .tab-item:hover, .btn-filter.active, .btn-filter:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.filter-dropdown {
  position: relative;
}
.btn-filter-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-filter-select:hover {
  background: #06101E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,25,44,.25);
}
.filter-dropdown:hover .filter-dropdown-menu,
.filter-dropdown:focus-within .filter-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #0B192C;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s cubic-bezier(.16,1,.3,1), transform .25s cubic-bezier(.16,1,.3,1), visibility .25s;
  z-index: 100;
}
.filter-dropdown-menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.filter-dropdown-menu a:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold);
  padding-left: 20px;
}

.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sermon-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sermon-card-grid-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sermon-card-grid-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.sermon-card-grid-item .thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.sermon-card-grid-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sermon-card-grid-item:hover .thumb img {
  transform: scale(1.06);
}
.sermon-card-grid-item .thumb .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(11,25,44,.85);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: transform .25s ease, background .25s ease;
}
.sermon-card-grid-item:hover .thumb .play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
  color: #0B192C;
}
.sermon-card-grid-item .s-body {
  padding: 24px;
}
.sermon-card-grid-item .s-series {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sermon-card-grid-item .s-title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sermon-card-grid-item .s-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
}
.sermon-card-grid-item .s-scripture {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--navy);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.08);
}
.taxonomy-description-box {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  font-size: 1rem;
  color: var(--muted);
}
.archive-nav-bar {
  margin-bottom: 30px;
}
.pagination-wrap {
  margin-top: 50px;
}
.no-results-box {
  background: #fff;
  padding: 60px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .event-layout-grid, .sermon-content-layout {
    grid-template-columns: 1fr;
  }
  .event-cards-grid, .sermon-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .event-cards-grid, .sermon-archive-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   18. PRAYER REQUESTS PAGE & PRAYER WALL
   ============================================================ */
.prayer-hero {
  background: linear-gradient(135deg, var(--navy), #06101E);
  color: #fff;
  padding: 160px 0 90px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.prayer-hero .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.prayer-hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 16px;
  color: #fff;
}
.prayer-hero .hero-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-prayer-content {
  padding: 0 0 90px;
  background: var(--bg-soft);
}
.prayer-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: -50px;
  margin-bottom: 70px;
  position: relative;
  z-index: 5;
}

.prayer-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}
.prayer-card-head {
  margin-bottom: 28px;
}
.prayer-card-head .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197,160,89,.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.prayer-card-head h2 {
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.prayer-card-head p {
  color: var(--muted);
  font-size: .95rem;
}

.prayer-form .form-group {
  margin-bottom: 22px;
}
.prayer-form .form-row.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prayer-form label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.prayer-form .required {
  color: #e74c3c;
}
.prayer-form .form-control {
  width: 100%;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}
.prayer-form .form-control:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(197,160,89,.18);
}
.prayer-form .form-options {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-label .chk-text strong {
  display: block;
  font-size: .92rem;
  color: var(--navy);
}
.checkbox-label .chk-text small {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 2px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #D4AF37);
  color: #0B192C;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(197,160,89,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197,160,89,.5);
  color: #0B192C;
}
.btn-block { width: 100%; }
.btn-lg { font-size: .98rem; }

.sidebar-info-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-soft);
}
.commit-list { list-style: none; padding: 0; margin: 0; }
.commit-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.commit-list li:last-child { margin-bottom: 0; }
.commit-list .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(197,160,89,.2);
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.commit-list strong { font-size: .95rem; color: var(--navy); display: block; margin-bottom: 4px; }
.commit-list p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* Community Prayer Wall Section */
.prayer-wall-section { margin-top: 60px; }
.prayer-wall-section .section-head h2 {
  color: var(--navy) !important;
}
.prayer-wall-section .section-head p {
  color: var(--muted) !important;
}
.prayer-wall-section .section-head .eyebrow {
  color: var(--gold) !important;
}
.prayer-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}
.prayer-wall-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.prayer-wall-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.wall-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.wall-card-head .avatar-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1E3A8A);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wall-user h4 { font-size: .98rem; color: var(--navy); margin: 0; }
.wall-user .time-ago { font-size: .76rem; color: var(--muted); }
.badge-praying {
  margin-left: auto;
  font-size: .74rem;
  font-weight: 600;
  background: rgba(197,160,89,.15);
  color: #B38E46;
  padding: 4px 10px;
  border-radius: 999px;
}
.wall-card-body {
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.wall-card-foot {
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}
.btn-i-prayed {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-i-prayed:hover, .btn-i-prayed.prayed {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

@media (max-width: 990px) {
  .prayer-layout-grid { grid-template-columns: 1fr; }
  .prayer-wall-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prayer-wall-grid { grid-template-columns: 1fr; }
  .prayer-form .form-row.grid-2 { grid-template-columns: 1fr; }
}
