/* ================================================================
   CHRIST IN US MINISTRY - main.css
   ================================================================ */

:root {
  --gold: #A1823C; /* Muted gold commonly used */
  --gold-dark: #82631D;
  --navy: #0d1b2e;
  --navy2: #152340;
  --white: #ffffff;
  --gray-light: #f9f9f9;
  --gray: #666666;
  --dark: #1a1a1a;
  --red: #8B0000;
  --border: #e0e0e0;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', 'Montserrat', sans-serif; background: #fff; color: var(--dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── UTIL BAR & NAVBAR ─────────────────────────────────────── */
.util-bar { background: var(--dark); color: #ccc; font-size: 11px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; height: 36px; padding: 0 40px; }
.util-links { display: flex; height: 100%; }
.util-links a { color: #ccc; padding: 0 16px; border-right: 1px solid #444; height: 100%; display: flex; align-items: center; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.util-links a:hover { color: var(--gold); }
.pll-lang-list { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; }
.pll-lang-list a { color: #ccc; text-transform: uppercase; font-size: 10px; font-weight: bold; }
.pll-lang-list a:hover { color: var(--gold); }

.site-nav { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 999; border-bottom: 2px solid var(--gold); }
.nav-wrap { max-width: 1220px; margin: 0 auto; padding: 0 40px; height: 85px; display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: 14px; }
.logo-img { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; }
.logo-img img { width: 100%; height: 100%; object-fit: cover; }
.logo-name { font-family: 'Merriweather', serif; font-size: 16px; font-weight: 700; color: var(--navy); display: block; line-height: 1.2; text-transform: uppercase;}
.logo-tagline { font-size: 9px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; display: block; }

.main-menu { display: flex; align-items: center; list-style: none; height: 85px; gap: 0; }
.main-menu > li { position: relative; height: 100%; display: flex; align-items: center; }
.main-menu > li > a { color: var(--dark); font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 0 14px; height: 100%; display: flex; align-items: center; border-bottom: 3px solid transparent; }
.main-menu > li > a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Dropdown Support */
.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--gold);
  z-index: 999;
}

.main-menu li:hover > .sub-menu,
.main-menu li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu li {
  width: 100%;
}

.main-menu .sub-menu a {
  color: #fff;
  padding: 12px 20px;
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: 0.2s;
}

.main-menu .sub-menu a:hover {
  background: var(--gold);
  color: #fff;
  padding-left: 25px;
}

.main-menu .arrow { 
  font-size: 8px; 
  margin-left: 6px; 
  transition: 0.3s; 
  display: inline-block;
  vertical-align: middle;
}
.main-menu li:hover .arrow,
.main-menu li.is-open .arrow { transform: rotate(180deg); color: var(--gold); }

/* Buttons */
.nav-give { background: var(--red) !important; color: #fff !important; padding: 11px 26px !important; margin-left: 10px; border-radius: 2px; }
.nav-give:hover { background: #660000 !important; }

/* ── BUTTONS ────────────────────────────── */
.btn-top-outline { display: inline-block; border: 2px solid #fff; color: #fff; padding: 12px 30px; font-weight: 700; text-transform: uppercase; font-size: 13px; margin: 5px; transition: 0.3s; }
.btn-top-outline:hover { background: #fff; color: var(--navy); }
.btn-top-solid { display: inline-block; background: var(--gold); color: #fff; padding: 14px 32px; font-weight: 700; text-transform: uppercase; font-size: 13px; margin: 5px; transition: 0.3s; border: none; }
.btn-top-solid:hover { background: #fff; color: var(--gold); }
.btn-red-outline { display: inline-block; border: 2px solid var(--red); color: var(--red); background: transparent; padding: 15px 40px; font-weight: bold; text-transform: uppercase; font-size: 14px; transition: 0.3s; }
.btn-red-outline:hover { background: var(--red); color: #fff; }
.btn-navy { display: inline-block; background: var(--navy); color: #fff; padding: 15px 40px; font-weight: bold; text-transform: uppercase; font-size: 14px; transition: 0.3s; border: none; }
.btn-navy:hover { background: var(--gold); }
.btn-full { width: 100%; }

/* ── UTILS ─────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.wrap-sm { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.rv { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.rv.show { opacity: 1; transform: translateY(0); }
.gold-bar { width: 60px; height: 3px; background: var(--gold); margin: 15px 0 30px; }
.gold-bar-center { margin: 15px auto 30px; }
.section-white { background: #fff; padding: 80px 40px; }
.section-gray { background: var(--gray-light); padding: 80px 40px; }
.bh-title { font-family: 'Merriweather', serif; font-size: 32px; color: var(--navy); font-weight: 700; margin-bottom: 20px; }

/* ── TOP ANNOUNCEMENT ──────────────────────────────────────── */
.top-announcement { background-color: var(--navy); background-size: cover; background-position: center; color: #fff; padding: 160px 40px; position: relative; }
.top-overlay { position: absolute; inset: 0; background: rgba(13,27,46,0.65); z-index: 1; }
.top-banner-text { font-family: 'Merriweather', serif; font-size: clamp(28px, 5vw, 54px); font-weight: 700; margin-bottom: 30px; line-height: 1.25; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

/* ── SALVATION BANNER ──────────────────────────────────────── */
.salvation-banner { background: #9b181a; padding: 60px 40px; text-align: center; }
.salvation-banner h2 { font-family: 'Merriweather', serif; font-size: 28px; color: #fff; margin-bottom: 20px; }
.salvation-banner .btn-red-outline { border-color: #fff; color: #fff; }
.salvation-banner .btn-red-outline:hover { background: #fff; color: #9b181a; }

/* ── FEATURE LAYOUT ────────────────────── */
.feature-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-text { padding-right: 20px; }
.bh-desc p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 20px; }
.bh-list { list-style: none; margin-bottom: 30px; }
.bh-list li { font-size: 15px; color: #444; margin-bottom: 12px; padding-left: 24px; position: relative; }
.bh-list li::before { content: '✓'; color: var(--gold); font-weight: bold; position: absolute; left: 0; top: 0; }
.feature-media img { width: 100%; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.ph-box { background: #eee; padding: 100px 20px; text-align: center; color: #888; border: 2px dashed #ccc; }

/* ── LATEST TEACHINGS / CARDS ──────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bh-card { background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--gold); padding: 30px 25px; transition: 0.3s; }
.bh-card:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.08); transform: translateY(-5px); }
.bh-card-thumb img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 20px; border-radius: 2px; }
.bh-card-thumb .ph { font-size: 50px; color: #ccc; text-align: center; padding: 50px; background: #fafafa; margin-bottom: 20px; }
.bh-card-title { font-family: 'Merriweather', serif; font-size: 18px; margin-bottom: 10px; color: var(--navy); line-height: 1.4; }
.bh-card-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }
.bh-card-link { font-size: 13px; font-weight: bold; color: var(--red); text-transform: uppercase; }

/* ── EVENTS CARDS ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bh-event-card { background: #fff; padding: 40px; border-left: 5px solid var(--gold); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.bh-event-title { font-family: 'Merriweather', serif; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.bh-event-date { font-size: 13px; font-weight: bold; color: var(--gold); text-transform: uppercase; margin-bottom: 15px; }

/* ── NEWSLETTER ────────────────────────────────────────────── */
.nl-form { display: flex; flex-direction: column; gap: 15px; }
.nl-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cium-input { border: 1px solid #ccc; padding: 16px; font-size: 14px; width: 100%; border-radius: 2px; outline: none; }
.cium-input:focus { border-color: var(--navy); }
.success-msg { display: none; color: green; font-weight: bold; margin-top: 15px; }

/* ── CONTACT PAGE ────────────────────────   */
.contact-bh-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: stretch; }
.contact-info-col { display: flex; flex-direction: column; }
.bh-contact-block { margin-bottom: 30px; }
.bh-form-container { border-radius: 4px; }
.form-group label { text-transform: uppercase; letter-spacing: 1px; }
.form-group select { appearance: none; -webkit-appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>'); background-repeat: no-repeat; background-position: right 15px center; background-size: 14px; }

/* ── ABOUT PAGE ────────────────────────   */
.about-bh-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; margin-top: -40px; position: relative; z-index: 10; padding-top: 40px; background: #fff; border-radius: 8px 8px 0 0; padding: 50px 40px; box-shadow: 0 -10px 40px rgba(0,0,0,0.05); }

.bh-sidebar { position: sticky; top: 120px; }
.bh-sidebar-menu { list-style: none; border-left: 2px solid var(--border); padding-left: 20px; }
.bh-sidebar-menu li { margin-bottom: 20px; }
.bh-sidebar-menu a { display: block; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; position: relative; }
.bh-sidebar-menu a:hover, .bh-sidebar-menu a.active { color: var(--navy); }
.bh-sidebar-menu a.active::before { content: ''; position: absolute; left: -22px; top: 50%; transform: translateY(-50%); width: 2px; height: 100%; background: var(--gold); }

.bh-content-area .content-section { display: none; animation: fadeIn 0.5s ease-in-out; }
.bh-content-area .content-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.about-pastor-layout { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-bottom: 40px; }
.pastor-image-wrap { border: 4px solid var(--gold); padding: 5px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pastor-image-wrap img { width: 100%; height: auto; display: block; }

/* ── EVENTS PAGE ────────────────────────   */
.events-page-wrap { max-width: 1200px; margin: 0 auto; padding: 40px; }
.event-section-title { font-family: 'Merriweather', serif; font-size: 28px; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 30px; margin-top: 50px; }
.event-row { display: flex; align-items: stretch; gap: 30px; background: #fff; padding: 0; border-left: 4px solid var(--gold); border-bottom: 1px solid var(--border); box-shadow: 0 5px 15px rgba(0,0,0,0.03); margin-bottom: 30px; transition: 0.3s; overflow: hidden; border-radius: 4px; }
.event-row:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-3px); }
.event-thumb { width: 300px; min-height: 100%; object-fit: cover; flex-shrink: 0; background: #eee; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-date-box { background: #fdfaf2; border-right: 1px dashed #efe4c9; border-left: 1px dashed #efe4c9; text-align: center; padding: 25px 20px; min-width: 120px; display: flex; flex-direction: column; justify-content: center; }
.event-date-month { font-size: 14px; text-transform: uppercase; font-weight: 700; color: var(--gold); letter-spacing: 2px; }
.event-date-day { font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1; margin: 10px 0; font-family: 'Merriweather', serif; }
.event-date-year { font-size: 14px; color: #888; font-weight: 600; }
.event-body { display: flex; align-items: center; justify-content: space-between; flex: 1; padding: 25px; gap: 20px; }
.event-details { flex: 1; }
.event-title { font-family: 'Merriweather', serif; font-size: 24px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.event-meta { font-size: 15px; color: #555; display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
.event-meta span { display: inline-flex; align-items: center; font-weight: 600; }
.event-meta span i { margin-right: 6px; font-style: normal; color: var(--gold); }
.event-desc { font-size: 15px; color: #666; line-height: 1.7; }
.event-action { min-width: 180px; text-align: right; }

/* Styles spécifiques aux événements passés */
.event-past .event-row { opacity: 0.8; filter: grayscale(20%); border-left-color: #888; }
.event-past .event-row:hover { opacity: 1; filter: grayscale(0%); border-left-color: var(--gold); }
.event-past .event-date-month { color: #888; }
.event-past .event-date-box { background: #f9f9f9; border-color: #e0e0e0; }

/* ── DEVOTIONS PAGE ───────────────────────   */
.devo-page-wrap { max-width: 850px; margin: -50px auto 60px; position: relative; z-index: 10; background: #fff; padding: 50px 60px; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.devo-date { font-size: 13px; font-weight: bold; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.devo-title { font-family: 'Merriweather', serif; font-size: 34px; color: var(--navy); line-height: 1.3; margin-bottom: 25px; font-weight: 700; }
.devo-image { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 40px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.devo-scripture { background: #fdfaf2; border-left: 4px solid var(--gold); padding: 25px 30px; margin-bottom: 40px; }
.devo-scripture p { font-size: 19px; font-family: 'Merriweather', serif; font-style: italic; color: #444; line-height: 1.6; margin-bottom: 10px; }
.devo-scripture span { font-size: 14px; font-weight: bold; color: var(--gold); text-transform: uppercase; }
.devo-body { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 40px; }
.devo-body p { margin-bottom: 20px; }
.devo-declare { background: var(--navy); color: #fff; padding: 40px; border-radius: 4px; margin-bottom: 40px; text-align: center; }
.devo-declare-title { font-family: 'Merriweather', serif; font-size: 22px; color: var(--gold); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.devo-declare p { font-size: 18px; line-height: 1.7; font-weight: 300; }
.devo-share { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 20px 0; margin-bottom: 40px; display: flex; align-items: center; justify-content: space-between; }
.devo-share-text { font-size: 14px; color: #888; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.devo-share-buttons { display: flex; gap: 10px; }
.devo-btn { padding: 8px 15px; font-size: 13px; font-weight: bold; border-radius: 3px; border: none; color: #fff; display: flex; align-items: center; gap: 8px; }
.devo-fb { background: #3b5998; }
.devo-wa { background: #25D366; }
.devo-tw { background: #1DA1F2; }
.devo-btn:hover { opacity: 0.9; }

/* ── TESTIMONIES PAGE ───────────────────   */
.testimony-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.testimony-card { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); position: relative; transition: 0.3s; border-top: 4px solid var(--gold); }
.testimony-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.testimony-quote-icon { font-size: 60px; font-family: Georgia, serif; color: #f0ebd8; position: absolute; top: 10px; left: 20px; line-height: 1; }
.testimony-text { font-size: 16px; color: #555; font-style: italic; line-height: 1.8; margin-bottom: 25px; position: relative; z-index: 2; }
.testimony-author { display: flex; align-items: center; gap: 15px; }
.testimony-avatar { width: 50px; height: 50px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; color: #aaa; flex-shrink: 0; }
.testimony-author-info h4 { font-size: 15px; color: var(--navy); margin-bottom: 3px; font-weight: 700; }
.testimony-author-info span { font-size: 12px; color: var(--gold); text-transform: uppercase; font-weight: bold; }

/* ── PRAYER REQUEST SECTION ──────────────────────────────   */
.prayer-request-section { background: linear-gradient(135deg, var(--navy) 0%, #06111f 100%); padding: 100px 40px; color: #fff; position: relative; overflow: hidden; }
.prayer-request-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; border: 40px solid rgba(255,255,255,0.03); border-radius: 50%; }
.prayer-request-wrap { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 2; }
.prayer-info-title { font-family: 'Merriweather', serif; font-size: 38px; font-weight: 700; margin-bottom: 25px; line-height: 1.3; }
.prayer-info-text { font-size: 16px; line-height: 1.8; color: #ccc; margin-bottom: 30px; }
.prayer-form-box { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 15px 50px rgba(0,0,0,0.3); }
.prayer-form-box label { display: block; font-size: 13px; font-weight: bold; color: #333; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ── RESOURCES & ECOMMERCE PAGE ──────────────────────────────   */
.resources-hero { background: linear-gradient(rgba(13,27,46,0.8), rgba(13,27,46,0.9)), url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover; padding: 120px 40px 100px; text-align: center; color: #fff; }
.resources-hero-title { font-family: 'Merriweather', serif; font-size: 42px; font-weight: 700; margin-bottom: 20px; }

/* Store Layout */
.store-layout { display: grid; grid-template-columns: 260px 1fr; gap: 50px; margin-top: 40px; margin-bottom: 80px; align-items: start; }
.store-sidebar { background: #fff; padding: 30px 20px; border: 1px solid var(--border); border-radius: 4px; }
.store-widget { margin-bottom: 40px; }
.store-widget:last-child { margin-bottom: 0; }
.store-widget h3 { font-family: 'Merriweather', serif; font-size: 18px; color: var(--navy); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.store-widget ul { list-style: none; }
.store-widget ul li { margin-bottom: 10px; }
.store-widget ul li a { display: block; color: #555; text-decoration: none; padding: 5px 0; font-size: 14px; border-bottom: 1px dashed #eee; transition: 0.2s; }
.store-widget ul li a:hover { color: var(--gold); padding-left: 5px; }

.store-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; font-size: 14px; color: #666; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.store-toolbar select { padding: 8px 15px; border: 1px solid #ccc; color: #444; border-radius: 3px; font-size: 13px; outline: none; }

/* Grille des ressources (Store Main) */
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.book-card { background: #fff; padding: 30px 20px; text-align: center; border: 1px solid var(--border); border-radius: 4px; transition: 0.3s; position: relative; }
.book-card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.book-card-img { height: 220px; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; }
.book-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.book-card-title { font-family: 'Merriweather', serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; height: 42px; overflow: hidden; }
.book-card-price { font-size: 18px; font-weight: 900; color: var(--gold); margin-bottom: 20px; }
.btn-buy-small { display: block; width: 100%; background: #333; color: #fff; font-size: 12px; font-weight: bold; text-transform: uppercase; padding: 12px; border-radius: 3px; transition: 0.3s; letter-spacing: 1px; }
.btn-buy-small:hover { background: var(--gold); color: #fff; }

/* Trust Badges */
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 30px; border-top: 1px solid #eee; padding-top: 20px; margin-top: 20px; color: #666; font-size: 13px; font-weight: bold; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #ccc; padding: 70px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .footer-name { font-family: 'Merriweather', serif; font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; }
.footer-brand .footer-tagline { display: block; font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-weight: bold; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 25px; }
.footer-socials { display: flex; gap: 15px; font-family: 'Arial', sans-serif; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #444; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: 0.3s; }
.footer-socials a:hover { border-color: var(--gold); background: var(--gold); color: #fff; }

.footer-col h4 { font-family: 'Merriweather', serif; color: #fff; font-size: 18px; margin-bottom: 25px; font-weight: 700; position: relative; padding-bottom: 15px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #aaa; transition: color 0.2s; font-size: 13px; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 12px; color: #777; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  padding: 15px; /* Zone de clic agrandie */
  margin: -10px; /* Compense le padding pour rester aligné visuellement */
  z-index: 99999; 
  cursor: pointer; 
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:active {
  opacity: 0.6; /* Feedback visuel au toucher */
}
.hamburger span { width: 28px; height: 3px; background: var(--navy); display: block; transition: 0.3s; border-radius: 2px; }

/* Overlay Menu Mobile - Masquage Desktop Radical */
#site-mob-nav { display: none !important; }



@media (max-width: 968px) {
  /* ── NAVIGATION MOBILE ── */
  #site-mob-nav {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    background: var(--navy) !important;
    z-index: 9999 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 60px !important;
    overflow-y: auto !important;
  }
  #site-mob-nav.open { display: flex !important; }

  .mob-close { 
    display: none !important; 
  }
  #site-mob-nav.open .mob-close { display: none !important; }


  .mob-links {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 40px !important;
    list-style: none !important;
    margin: 0 !important;
  }
  .mob-links li { width: 100% !important; margin: 0 !important; }
  .mob-links li a {
    display: flex !important;
    padding: 22px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-decoration: none !important;
    position: relative !important;
    transition: 0.3s;
  }
  .mob-links li:last-child a { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }

  /* Style spécifique pour les SOUS-MENUS (ENGLISH/FRANCAIS) */
  .mob-links li ul li a {
    font-size: 18px !important; /* Plus petit */
    padding: 12px 0 12px 25px !important; /* Indentation à gauche */
    color: rgba(255,255,255,0.7) !important;
    border-top: none !important;
    font-weight: 600 !important;
    text-transform: uppercase;
  }
  .mob-links li ul li a:hover {
    color: var(--gold) !important;
  }

  /* La flèche dorée uniquement pour les éléments principaux */
  .mob-links > li > a::after {
    content: "›" !important;
    position: absolute !important;
    right: 0 !important;
    color: #a1823c !important;
    font-size: 24px !important;
    font-weight: 300 !important;
  }
  
  /* Supprimer la flèche pour les sous-menus */
  .mob-links li ul li a::after {
    display: none !important;
  }

  .no-scroll { overflow: hidden !important; }

  .nav-wrap { height: 75px; padding: 0 20px; }
  .bh-title { font-size: 26px; margin-bottom: 15px; }
  .section-white, .section-gray { padding: 50px 20px; }
  .hamburger { display: flex; }
  .feature-layout { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .testimony-grid { grid-template-columns: 1fr 1fr; }
  .prayer-request-wrap { grid-template-columns: 1fr; gap: 40px; }
  .prayer-request-section { padding: 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-bh-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-bh-layout { grid-template-columns: 1fr; gap: 30px; padding: 20px; }
  .about-pastor-layout { grid-template-columns: 1fr; gap: 30px; }
  .bh-sidebar { position: relative; top: 0; margin-bottom: 20px; border-bottom: 2px solid var(--border); padding-bottom: 20px; }
  .bh-sidebar-menu { display: flex; flex-wrap: wrap; gap: 10px; border-left: none; padding-left: 0; }
  .bh-sidebar-menu li { margin-bottom: 0; }
  .bh-sidebar-menu a { padding: 8px 16px; background: #f0f0f0; border-radius: 20px; font-size: 12px; }
  .bh-sidebar-menu a.active { background: var(--navy); color: #fff; }
  .bh-sidebar-menu a.active::before { display: none; }
  .event-row { flex-direction: column; align-items: flex-start; gap: 15px; }
  .event-date-box { width: 100%; border-bottom: 3px solid var(--gold); border-right: 1px solid #efe4c9; }
  .event-action { text-align: left; width: 100%; }
  .devo-page-wrap { padding: 40px; margin: -30px 20px 40px; }
  .store-layout { grid-template-columns: 1fr; margin-top: 10px; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .bh-card { padding: 25px 20px; }
  .bh-card-title { font-size: 17px; }
  .nl-row2 { grid-template-columns: 1fr; }
  .util-bar { display: flex !important; } 
  .main-menu { display: none !important; }
}
@media (max-width: 600px) {
  .wrap, .wrap-sm { padding: 0 20px; }
  .top-banner-text { font-size: 24px; }
  .testimony-grid { grid-template-columns: 1fr; }
  .devo-page-wrap { padding: 30px 20px; margin: -20px 10px 30px; }
  .devo-title { font-size: 26px; }
  .devo-image { height: 250px; }
  .devo-share { flex-direction: column; gap: 15px; }
  .books-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; gap: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ── SUNDAY SERVICES PREMIUM CARDS ────────────────────────── */
.service-card-premium { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid #f0f0f0; position: relative; display: flex; flex-direction: column; }
.service-card-premium:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(161, 130, 60, 0.15); border-color: var(--gold); }

.service-card-visual { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.service-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; opacity: 0.9; }
.service-card-premium:hover .service-card-visual img { transform: scale(1.08); opacity: 1; }

.play-btn-ethereal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; transition: 0.3s; box-shadow: 0 0 0 0 rgba(255,255,255,0.4); z-index: 2; }
.service-card-premium:hover .play-btn-ethereal { background: var(--gold); color: #fff; animation: pulse-gold 2s infinite; }

@keyframes pulse-gold { 
    0% { box-shadow: 0 0 0 0 rgba(161, 130, 60, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(161, 130, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(161, 130, 60, 0); }
}

.service-card-info { padding: 20px 15px; flex-grow: 1; display: flex; flex-direction: column; }
.service-card-tag { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; display: block; }
.service-card-title { font-family: 'Merriweather', serif; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; height: 42px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.service-card-excerpt { font-size: 12px; color: #777; line-height: 1.6; margin-bottom: 15px; height: 58px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

.service-card-meta-icons { display: flex; gap: 12px; border-top: 1px solid #f5f5f5; padding-top: 12px; margin-top: auto; }
.meta-icon-item { display: flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; transition: 0.3s; }
.meta-icon-item i { color: var(--gold); font-size: 12px; }
.service-card-premium:hover .meta-icon-item { color: var(--navy); }

@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-4 { grid-template-columns: 1fr; }
}

/* ── MODALS & SALVATION POPUP ────────────────────────────── */
.cium-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.cium-modal.open {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 46, 0.85);
  backdrop-filter: blur(5px);
}
.modal-container {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  border-top: 5px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 2;
  transform: translateY(30px);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cium-modal.open .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 24px;
  color: #ccc;
  z-index: 10;
  transition: 0.2s;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-body {
  padding: 50px 60px;
}

@media (max-width: 600px) {
  .modal-body { padding: 40px 25px; }
}

/* Contact Form Standalone specific adjustments */
.contact-form-standalone {
  width: 100%;
}
.contact-form-standalone .bh-form-container {
  transition: 0.3s;
}
.contact-form-standalone .bh-form-container:hover {
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

/* Success Message animations */
.success-msg {
  animation: slideDownIn 0.4s ease forwards;
}
@keyframes slideDownIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

