/* ============================================================
   Anoint The World — Centralized Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Colours ────────────────────────────────────────────────── */
:root {
  --gold:    #c8a951;
  --dark:    #111;
  --mid:     #444;
  --light:   #f5f5f5;
  --white:   #ffffff;
  --hero-overlay: rgba(0,0,0,0.52);
}

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  text-decoration: none !important;
}
.btn-gold {
  background: var(--gold) !important;
  color: #fff !important;
}
.btn-gold:hover { background: #b8923e !important; color: #fff !important; }
.btn-outline {
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
}
.btn-outline:hover { background: var(--gold) !important; color: #fff !important; }
.btn-white {
  background: #fff !important;
  color: var(--dark) !important;
}
.btn-white:hover { background: var(--gold) !important; color: #fff !important; }

section { padding: 70px 0; }

/* ── NAVIGATION ────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(200,169,81,0.2);
  transition: background .3s;
}
#site-header.scrolled { background: rgba(0,0,0,0.97); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo img {
  height: 100px;
  width: auto;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }

.primary-nav > li {
  position: relative;
}

.primary-nav > li > a,
.primary-nav > li > span {
  display: block;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ddd;
  cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
}
.primary-nav > li > a:hover,
.primary-nav > li > span:hover,
.primary-nav > li.active > a { color: var(--gold); }

/* Dropdown */
.has-dropdown:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 240px;
  background: #111;
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  z-index: 200;
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s;
}
.dropdown li a:hover { background: rgba(200,169,81,.15); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: all .3s;
}

/* Mobile nav */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .primary-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #0a0a0a;
    overflow-y: auto;
    padding: 20px 0;
  }
  .primary-nav.open { display: flex; }
  .primary-nav > li { width: 100%; }
  .primary-nav > li > a,
  .primary-nav > li > span { padding: 14px 24px; font-size: 14px; border-bottom: 1px solid #1a1a1a; }
  .dropdown { display: none !important; position: static; box-shadow: none; border-top: none; background: #141414; }
  .primary-nav > li.open .dropdown { display: block !important; }
  .dropdown li a { padding-left: 40px; }
}

/* ── HERO SLIDER ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  margin-top: 0;
}
/* ── Ken Burns keyframes ────────────────────────────────────── */
@keyframes kb-left {
  0%   { transform: scale(1.0)  translate(0%,   0%); }
  100% { transform: scale(1.12) translate(-2%,  -1%); }
}
@keyframes kb-right {
  0%   { transform: scale(1.0)  translate(0%,   0%); }
  100% { transform: scale(1.12) translate(2%,  -1%); }
}

/* ── Slides ─────────────────────────────────────────────────── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 0;
}
/* Incoming: fade in on top */
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
/* Outgoing: stay visible underneath while incoming fades in, then fade out */
.hero-slide.leaving {
  opacity: 0;
  z-index: 1;
  transition: opacity 1.6s ease;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center center;
  transform: scale(1.0);
  /* animation injected by JS via data-kb attribute */
}
.hero-slide img[data-kb="left"]  { animation: kb-left  8s ease-in-out forwards; }
.hero-slide img[data-kb="right"] { animation: kb-right 8s ease-in-out forwards; }
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero-text { color: #fff; max-width: 700px; }
.hero-text .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 30px;
}
.hero-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s;
}
.hero-dots span.active { background: var(--gold); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  margin-top: 72px;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hide the <img> — we use CSS bg for parallax */
.page-hero img { display: none; }
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .page-hero { background-attachment: scroll; }
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header p { color: var(--mid); max-width: 680px; margin: 0 auto; }
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* ── HOME: MISSION BAND ─────────────────────────────────────── */
.mission-band {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.mission-band h2 { color: var(--gold); font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 20px; }
.mission-band p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 800px; margin: 0 auto 10px; }

/* ── HOME: 3-COLUMN CARDS ───────────────────────────────────── */
.icon-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.icon-card {
  position: relative;
  overflow: hidden;
  height: 560px;
}
.icon-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.icon-card:hover img { transform: scale(1.06); }
.icon-card .card-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px 32px;
}
.icon-card .card-label h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 8px;
  transition: color .3s;
}
.icon-card:hover .card-label h3 { color: var(--gold); }
@media (max-width: 768px) {
  .icon-cards { grid-template-columns: 1fr; }
  .icon-card { height: 340px; }
}

/* ── HOME: EVENT BAND ───────────────────────────────────────── */
.event-band {
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.event-band h3 { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; color: rgba(255,255,255,.8); }
.event-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px; }
.event-band p { font-size: 1rem; margin-bottom: 24px; }
.event-band .btn-white { margin: 0 8px; }

/* ── HOME: SOI SECTION ──────────────────────────────────────── */
.soi-section {
  color: #fff;
  text-align: center;
  padding: 90px 24px;
}
.soi-section .label { color: var(--gold); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-family:'Montserrat',sans-serif; font-weight:700; }
.soi-section h2 { color: var(--gold); font-size: clamp(1.8rem,4vw,2.8rem); margin: 10px 0 20px; }
.soi-section p { color: rgba(255,255,255,.75); max-width: 760px; margin: 0 auto 30px; font-size: 1.05rem; }

/* ── HOME: TEACHINGS GRID ───────────────────────────────────── */
.teachings-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.teaching-card { background: #f8f8f8; border-bottom: 3px solid var(--gold); }
.teaching-card img { width: 100%; height: 220px; object-fit: cover; }
.teaching-card .tc-body { padding: 20px; }
.teaching-card h4 { font-size: 1rem; margin-bottom: 8px; }
.teaching-card h4 a:hover { color: var(--gold); }
.teaching-card .meta { font-size: 12px; color: #888; }
@media (max-width: 768px) { .teachings-grid { grid-template-columns: 1fr; } }

/* ── HOME: QUOTE BAND ───────────────────────────────────────── */
.quote-band {
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.quote-band .author { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family:'Montserrat',sans-serif; font-weight:700; }
.quote-band h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); color: #fff; line-height: 1.35; }

/* ── HOME: NEWSLETTER ───────────────────────────────────────── */
.newsletter-section {
  background-image: url('https://anointtheworld.com/wp-content/uploads/2018/11/Untitled-9.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 70px 24px;
  position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  z-index: 0;
}
.newsletter-section > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .newsletter-section { background-attachment: scroll; }
}
.newsletter-section h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-family:'Montserrat',sans-serif; }
.newsletter-section h2 { font-size: clamp(1.5rem,3.5vw,2rem); margin-bottom: 24px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 14px;
  outline: none;
}
.newsletter-form button { flex-shrink: 0; }

/* ── HOME: RESOURCES ────────────────────────────────────────── */
.resources-section { padding: 80px 0; }
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 24px;
}
.book-item img {
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .3s, box-shadow .3s;
  border-radius: 2px;
}
.book-item:hover img { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.2); }

/* ── HOME: CONTACT STRIP ────────────────────────────────────── */
.contact-strip {
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.contact-item .icon { font-size: 2rem; margin-bottom: 10px; color: var(--gold); }
.contact-item h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-family:'Montserrat',sans-serif; }
.contact-item p { color: rgba(255,255,255,.75); font-size: 14px; }

/* ── HOME: MEETINGS BAND ────────────────────────────────────── */
.meetings-band {
  text-align: center;
  color: #fff;
  padding: 80px 24px;
}
.meetings-band h3 { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-family:'Montserrat',sans-serif; font-weight:700; }
.meetings-band h2 { font-size: clamp(1.6rem,4vw,2.6rem); margin-bottom: 16px; }
.meetings-band .time { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 28px; }

/* ── HOME: NEWS ─────────────────────────────────────────────── */
.news-section { background: var(--light); padding: 80px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.news-card { background: #fff; }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-card .nc-body { padding: 22px; }
.news-card .nc-date { font-size: 12px; color: var(--gold); margin-bottom: 8px; font-family:'Montserrat',sans-serif; font-weight:600; letter-spacing:1px; }
.news-card h4 { font-size: 1rem; margin-bottom: 10px; }
.news-card h4 a:hover { color: var(--gold); }
.news-card p { font-size: 14px; color: #666; }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }

/* ── INNER PAGE CONTENT ─────────────────────────────────────── */
.page-content { padding: 70px 0; }
.page-content h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 24px; }
.page-content h2 { font-size: clamp(1.4rem,3vw,2rem); margin: 32px 0 14px; color: var(--dark); }
.page-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.page-content p { margin-bottom: 18px; color: #444; font-size: 1.02rem; line-height: 1.8; }
.page-content strong { color: #222; }
.page-content em { color: #555; font-style: italic; }
.page-content a { color: var(--gold); }
.page-content a:hover { text-decoration: underline; }

/* ABOUT page specific */
.about-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start; }
.about-intro img { width: 100%; border-radius: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
@media (max-width: 768px) { .about-intro { grid-template-columns: 1fr; } }

/* Beliefs list */
.beliefs-list { counter-reset: belief; }
.belief-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid #eee;
}
.belief-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

/* School table */
.schedule-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.schedule-table th { background: var(--gold); color: #fff; padding: 12px 16px; text-align: left; font-family:'Montserrat',sans-serif; font-size:12px; letter-spacing:1px; text-transform:uppercase; }
.schedule-table td { padding: 12px 16px; border-bottom: 1px solid #eee; }
.schedule-table tr:nth-child(even) td { background: #f9f9f9; }

/* Contact form */
.contact-form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 768px) { .contact-form-wrap { grid-template-columns: 1fr; } }
.contact-info-block h3 { font-size: 1rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-family:'Montserrat',sans-serif; margin-bottom: 8px; }
.contact-info-block p { font-size: 1.05rem; margin-bottom: 24px; }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #555; font-family:'Montserrat',sans-serif; letter-spacing: .5px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { height: 150px; resize: vertical; }

/* Store grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
.store-item { text-align: center; }
.store-item img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  margin-bottom: 14px;
  transition: transform .3s;
}
.store-item:hover img { transform: translateY(-4px); }
.store-item .btn { width: 100%; text-align: center; font-size: 11px; }

/* Giving page */
.giving-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 50px; }
.giving-card { background: var(--light); padding: 36px 28px; border-top: 3px solid var(--gold); text-align: center; }
.giving-card h3 { font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-family:'Montserrat',sans-serif; }
.giving-card p { font-size: 14px; color: #555; }
@media (max-width: 768px) { .giving-cards { grid-template-columns: 1fr; } }

/* TV Ministry stats */
.tv-stats { display: flex; gap: 0; margin: 40px 0; }
.tv-stat { flex: 1; text-align: center; padding: 40px 20px; background: #111; color: #fff; border-right: 1px solid #222; }
.tv-stat:last-child { border-right: none; }
.tv-stat .num { font-size: clamp(2.5rem,5vw,4rem); font-family:'Montserrat',sans-serif; font-weight:900; color: var(--gold); }
.tv-stat .label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-family:'Montserrat',sans-serif; color: #aaa; margin-top: 8px; }
@media (max-width: 600px) { .tv-stats { flex-direction: column; } .tv-stat { border-right: none; border-bottom: 1px solid #222; } }

/* LFCC core beliefs */
.core-beliefs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-top: 24px; }
.core-belief-item { background: var(--light); padding: 20px; border-left: 3px solid var(--gold); }
.core-belief-item p { font-size: 14px; color: #444; margin: 0; }

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #060606;
  color: #aaa;
  padding: 50px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; }

.footer-col h4 { font-family:'Montserrat',sans-serif; font-size:12px; letter-spacing:2px; text-transform:uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: #888; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #555;
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid #ccc; }
  .page-hero { height: 240px; }
}
/* ══════════════════════════════════════════════════════
   PARALLAX SECTIONS — background-attachment: fixed
   ══════════════════════════════════════════════════════ */

/* 1. Annual Gathering / Events band */
.event-band {
  background-image: url('https://anointtheworld.com/wp-content/uploads/2018/11/Untitled-7.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.event-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200,169,81,0.82);
  z-index: 0;
}
.event-band > * { position: relative; z-index: 1; }

/* 2. School of Impartation — IT'S NATURAL TO BE SUPERNATURAL */
.soi-section {
  background-image: url('https://anointtheworld.com/wp-content/uploads/2018/12/Untitled-8b.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.soi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.80);
  z-index: 0;
}
.soi-section > * { position: relative; z-index: 1; }

/* 3. Quote band — Dr Reg Morais quote */
.quote-band {
  background-image: url('https://anointtheworld.com/wp-content/uploads/2018/11/Untitled-9.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}
.quote-band > * { position: relative; z-index: 1; }

/* 4. Contact strip — Charisma / Watch / Contact info */
.contact-strip {
  background-image: url('https://anointtheworld.com/wp-content/uploads/2019/11/reg-morais-article-picture.jpg');
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.contact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}
.contact-strip > * { position: relative; z-index: 1; }

/* 5. Meetings band — LFCC Weekly Meetings */
.meetings-band {
  background-image: url('https://anointtheworld.com/wp-content/uploads/2018/12/adult-adventure-baby-532508.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.meetings-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
}
.meetings-band > * { position: relative; z-index: 1; }

/* Mobile: fixed attachment doesn't work well on iOS */
@media (max-width: 768px) {
  .event-band,
  .soi-section,
  .quote-band,
  .contact-strip,
  .meetings-band {
    background-attachment: scroll;
  }
}
