﻿/* ==========================================================================
   The Modern Scribe - Bright Sanctuary Color Palette (Zero Dark/Black Backgrounds)
   Brand Colors:
   --ms-gold: #FDC665
   --ms-gold-dark: #E6AD4A
   --ms-soft: #FFF8EC
   --ms-border: #F1E1C4
   --ms-dark: #171717 (used only for crisp typography)
   --ms-body: #4b5563
   --ms-white: #ffffff
   ========================================================================== */

/* 1. HERO SECTION */
.tms-hero {
  position: relative;
  background-image: url('/public/uploads/hero-sanctuary-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 20px 190px 20px;
  text-align: center;
  overflow: hidden;
}
.tms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Soft warm translucent daylight overlay - keeps cathedral bright and sunlit */
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.28) 0%, rgba(23, 23, 23, 0.44) 60%, rgba(23, 23, 23, 0.6) 100%);
  z-index: 1;
}
.tms-hero-container {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.tms-hero-title {
  font-family: var(--ms-heading-font, 'Poppins', sans-serif);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2em;
  color: var(--ms-gold, #FDC665);
  margin: 0 0 22px 0;
  text-shadow: 0 3px 18px rgba(0,0,0,0.6);
  letter-spacing: -0.5px;
}
.tms-hero-desc {
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0 auto 36px auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
  max-width: 840px;
}
.tms-btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--ms-gold, #FDC665) 0%, var(--ms-gold-dark, #E6AD4A) 100%);
  color: var(--ms-dark, #171717) !important;
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  padding: 16px 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(230, 173, 74, 0.42);
}
.tms-btn-gold:hover {
  background: linear-gradient(135deg, var(--ms-gold-dark, #E6AD4A) 0%, #d49a37 100%);
  color: var(--ms-dark, #171717) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(230, 173, 74, 0.52);
}

/* 2. THREE CARDS FEATURE SECTION */
.tms-cards-section {
  background-color: var(--ms-white, #FFFFFF);
  padding: 85px 20px 85px 20px;
}
.tms-container-1170 {
  max-width: 1170px;
  margin: 0 auto;
}
.tms-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}
.tms-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}
.tms-feature-card:hover {
  border-color: var(--ms-border, #F1E1C4);
  box-shadow: 0 10px 30px rgba(230, 173, 74, 0.12);
  transform: translateY(-4px);
}
.tms-card-img-wrap {
  width: 236px;
  height: 236px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tms-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.tms-feature-card:hover .tms-card-img {
  transform: scale(1.05);
}
.tms-gold-divider {
  width: 55px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--ms-gold, #FDC665), var(--ms-gold-dark, #E6AD4A));
  border-radius: 2px;
  margin: 0 auto 20px auto;
}
.tms-card-text {
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.85em;
  letter-spacing: -0.2px;
  color: var(--ms-body, #4b5563);
  margin: 0 0 26px 0;
  min-height: 85px;
}
.tms-card-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ms-gold, #FDC665) 0%, var(--ms-gold-dark, #E6AD4A) 100%);
  color: var(--ms-dark, #171717) !important;
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(230, 173, 74, 0.28);
}
.tms-card-btn:hover {
  background: linear-gradient(135deg, var(--ms-gold-dark, #E6AD4A) 0%, #d49a37 100%);
  color: var(--ms-dark, #171717) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 173, 74, 0.4);
}

/* 3. SPLIT SECTION ("DO YOU DESIRE A DEEPER OBEDIENCE?") - LIGHT LUXURY CREAM */
.tms-split-section {
  padding: 30px 20px 80px 20px;
}
.tms-split-container {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(230, 173, 74, 0.12);
  border: 1.5px solid var(--ms-border, #F1E1C4);
  background: #FFFFFF;
}
.tms-split-image {
  background-image: url('/public/uploads/deeper-obedience-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 380px;
}
.tms-split-content {
  background: linear-gradient(145deg, #FFFDF9 0%, var(--ms-soft, #FFF8EC) 100%);
  padding: 60px 70px 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tms-split-title {
  font-family: var(--ms-heading-font, 'Poppins', sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ms-dark, #171717);
  margin: 0 0 16px 0;
  line-height: 1.3em;
}
.tms-white-divider {
  width: 55px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--ms-gold, #FDC665), var(--ms-gold-dark, #E6AD4A));
  border-radius: 2px;
  margin: 0 0 20px 0;
}
.tms-split-text {
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 30px;
  color: var(--ms-body, #4b5563);
  margin: 0;
}

/* 4. WHAT IS CHRISTIAN OBEDIENCE? SECTION - BRIGHT & CRISP */
.tms-what-is-section {
  background-color: var(--ms-white, #FFFFFF);
  padding: 70px 20px 70px 20px;
  text-align: center;
}
.tms-what-is-container {
  max-width: 960px;
  margin: 0 auto;
}
.tms-subkicker {
  font-family: 'Barlow Semi Condensed', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--ms-gold-dark, #E6AD4A);
  margin-bottom: 8px;
}
.tms-main-heading {
  font-family: var(--ms-heading-font, 'Poppins', sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ms-dark, #171717);
  margin: 0 0 18px 0;
}
.tms-what-is-desc {
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85em;
  color: var(--ms-body, #4b5563);
  margin: 0 auto 34px auto;
  max-width: 860px;
}
.tms-btn-group-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.tms-btn-outline-gold {
  display: inline-block;
  background-color: var(--ms-soft, #FFF8EC);
  color: var(--ms-dark, #171717) !important;
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  text-decoration: none;
  padding: 15px 32px;
  border: 1.5px solid var(--ms-gold-dark, #E6AD4A);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.tms-btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--ms-gold, #FDC665) 0%, var(--ms-gold-dark, #E6AD4A) 100%);
  color: var(--ms-dark, #171717) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 173, 74, 0.35);
}

/* 5. THREE PILLAR CARDS (JOURNEY, SURRENDER, BLESSING) - WARM CREAM & GOLD (NO BLACK) */
.tms-pillars-journey-section {
  padding: 40px 20px 70px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 60%, var(--ms-soft, #FFF8EC) 100%);
}
.tms-pillars-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tms-pillar-card-box {
  background: #FFFFFF;
  border: 1.5px solid var(--ms-border, #F1E1C4);
  border-radius: 18px;
  box-shadow: 0px 8px 24px rgba(230, 173, 74, 0.08);
  padding: 42px 30px 38px 30px;
  text-align: center;
  color: var(--ms-body, #4b5563);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tms-pillar-card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--ms-gold, #FDC665), var(--ms-gold-dark, #E6AD4A));
  border-radius: 0 0 4px 4px;
}
.tms-pillar-card-box:hover {
  transform: translateY(-5px);
  border-color: var(--ms-gold, #FDC665);
  box-shadow: 0px 14px 34px rgba(230, 173, 74, 0.2);
}
.tms-pillar-card-title {
  font-family: var(--ms-heading-font, 'Poppins', sans-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35em;
  color: var(--ms-dark, #171717);
  margin: 0 0 16px 0;
}
.tms-pillar-card-text {
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75em;
  color: var(--ms-body, #4b5563);
  margin: 0;
}

/* 6. JESUS SAID BANNER */
.tms-banner-jesus-said {
  position: relative;
  background-image: url('/public/uploads/jesus-said-desktop.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 20px;
  margin: 40px auto 50px auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--ms-border, #F1E1C4);
}

/* 7. IN NUMBERS COUNTERS SECTION - BRIGHT & CLEAR */
.tms-numbers-section {
  padding: 40px 20px 85px 20px;
  background-color: var(--ms-white, #FFFFFF);
  text-align: center;
}
.tms-numbers-heading {
  font-family: var(--ms-heading-font, 'Poppins', sans-serif);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ms-dark, #171717);
  margin: 0 0 50px 0;
  letter-spacing: 0.5px;
}
.tms-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.tms-number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  border-radius: 18px;
  background: var(--ms-soft, #FFF8EC);
  border: 1.5px solid var(--ms-border, #F1E1C4);
  transition: all 0.3s ease;
}
.tms-number-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(230, 173, 74, 0.16);
  border-color: var(--ms-gold, #FDC665);
}
.tms-icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ms-gold, #FDC665) 0%, var(--ms-gold-dark, #E6AD4A) 100%);
  color: var(--ms-dark, #171717);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(230, 173, 74, 0.35);
}
.tms-icon-bubble svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.tms-stat-number {
  font-family: var(--ms-heading-font, 'Poppins', sans-serif);
  font-size: 40px;
  font-weight: 800;
  color: var(--ms-dark, #171717);
  line-height: 1.1em;
  margin-bottom: 8px;
}
.tms-stat-label {
  font-family: var(--ms-font, 'Poppins', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-body, #4b5563);
  margin-top: 8px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .tms-cards-grid,
  .tms-pillars-journey-grid,
  .tms-numbers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tms-split-container {
    grid-template-columns: 1fr;
  }
  .tms-split-image {
    min-height: 280px;
    border-radius: 18px 18px 0 0;
  }
  .tms-split-content {
    border-radius: 0 0 18px 18px;
    padding: 40px 30px;
  }
  .tms-banner-jesus-said {
    background-image: url('/public/uploads/jesus-said-mobile.jpg');
    padding: 100px 20px;
  }
  .tms-hero {
    padding: 120px 20px;
  }
  .tms-hero-title {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .tms-hero-title {
    font-size: 26px;
  }
  .tms-hero-desc {
    font-size: 13.5px;
    line-height: 26px;
  }
}
﻿
/* ==========================================================================
   LEE.SITES3.DIGJU.IN HOME PAGE SECTIONS - THE MODERN SCRIBE THEME PALETTE
   Colors: Gold (#FDC665 / #E6AD4A), Soft Cream (#FFF8EC), Border (#F1E1C4), Dark (#171717)
   ========================================================================== */

/* Base container helper */
.lee-container,
.container {
  width: min(1180px, calc(100% - 32px)) !important;
  margin-inline: auto !important;
  position: relative;
}
@media(max-width:560px){
  .lee-container, .container { width: min(100% - 22px, 1180px) !important; }
}
@media(max-width:380px){
  .lee-container, .container { width: min(100% - 18px, 1180px) !important; }
}

/* 1. HERO SLIDER */
.lee-hero-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background-color: #171717;
  display: flex;
  align-items: center;
}
.lee-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}
.lee-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.lee-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(23,23,23,0.85) 0%, rgba(23,23,23,0.55) 55%, rgba(23,23,23,0.25) 100%);
  z-index: 1;
}
.lee-slide-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0;
  color: #ffffff;
}
.lee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 50px;
  background: rgba(253, 198, 101, 0.22);
  border: 1px solid var(--ms-gold, #FDC665);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.lee-hero-title {
  font-size: clamp(32px, 4.8vw, 54px);
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.lee-hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 680px;
}
.lee-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ms-gold, #FDC665);
  color: #171717 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(253, 198, 101, 0.35);
  border: none;
  cursor: pointer;
}
.lee-btn-gold:hover {
  background: var(--ms-gold-dark, #E6AD4A);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(253, 198, 101, 0.5);
  color: #171717 !important;
}
.lee-btn-gold svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.lee-btn-gold:hover svg {
  transform: translateX(3px) translateY(-3px);
}
.lee-slider-controls {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lee-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.lee-arrow-btn:hover {
  background: var(--ms-gold, #FDC665);
  color: #171717;
  border-color: var(--ms-gold, #FDC665);
}
.lee-slider-dots {
  position: absolute;
  bottom: 38px;
  left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lee-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lee-dot.active {
  background: var(--ms-gold, #FDC665);
  width: 28px;
  border-radius: 10px;
}

/* 2. FAITH MARQUEE TICKER */
.lee-marquee-ticker {
  background: var(--ms-soft, #FFF8EC);
  border-top: 1px solid var(--ms-border, #F1E1C4);
  border-bottom: 1px solid var(--ms-border, #F1E1C4);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.lee-marquee-track {
  display: inline-flex;
  animation: leeTickerScroll 28s linear infinite;
}
.lee-marquee-track:hover {
  animation-play-state: paused;
}
.lee-marquee-item {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #171717;
  letter-spacing: 0.8px;
  margin: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.lee-marquee-item .lee-star {
  color: var(--ms-gold, #FDC665);
  font-size: 18px;
}
@keyframes leeTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 3. ABOUT US SECTION */
.lee-about-section {
  background: #ffffff;
  padding: 95px 0;
  position: relative;
}
.lee-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lee-about-visual-wrap {
  position: relative;
}
.lee-about-main-img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(23,23,23,0.12);
  border: 4px solid var(--ms-soft, #FFF8EC);
  display: block;
}
.lee-about-sub-img {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 15px 35px rgba(23,23,23,0.15);
}
.lee-about-badge-float {
  position: absolute;
  top: -25px;
  left: -20px;
  width: 110px;
  height: 110px;
  animation: floatEmblem 4s ease-in-out infinite alternate;
}
@keyframes floatEmblem {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
.lee-kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #b38128;
  margin-bottom: 12px;
  display: inline-block;
}
.lee-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #171717;
  line-height: 1.25;
  margin-bottom: 22px;
}
.lee-section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 30px;
}
.lee-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--ms-border, #F1E1C4);
}
.lee-stat-num {
  font-size: 38px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  color: #171717;
  line-height: 1;
  margin-bottom: 8px;
}
.lee-stat-num span {
  color: var(--ms-gold, #FDC665);
}
.lee-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 4. OUR COMMUNITY SECTION */
.lee-community-section {
  background: var(--ms-soft, #FFF8EC);
  padding: 95px 0;
  border-top: 1px solid var(--ms-border, #F1E1C4);
  border-bottom: 1px solid var(--ms-border, #F1E1C4);
}
.lee-center-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}
.lee-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.lee-community-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ms-border, #F1E1C4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.lee-community-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(253, 198, 101, 0.22);
}
.lee-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.lee-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lee-community-card:hover .lee-card-img {
  transform: scale(1.05);
}
.lee-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ms-gold, #FDC665);
  color: #171717;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}
.lee-card-body {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lee-card-title {
  font-size: 21px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #171717;
  margin-bottom: 12px;
}
.lee-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 24px;
  flex-grow: 1;
}
.lee-card-link {
  font-size: 14px;
  font-weight: 700;
  color: #171717;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.25s ease;
}
.lee-card-link:hover {
  color: var(--ms-gold-dark, #E6AD4A);
}
.lee-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.lee-card-link:hover svg {
  transform: translateX(4px);
}

/* 5. THE PATH OF OBEDIENCE SECTION */
.lee-path-section {
  background: #ffffff;
  padding: 95px 0;
}
.lee-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.lee-path-card {
  background: var(--ms-soft, #FFF8EC);
  border: 1px solid var(--ms-border, #F1E1C4);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lee-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(253, 198, 101, 0.18);
}
.lee-path-icon-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  background: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--ms-gold, #FDC665);
  box-shadow: 0 8px 24px rgba(253, 198, 101, 0.22);
}
.lee-path-icon-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.lee-path-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #171717;
  margin-bottom: 14px;
}
.lee-path-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
}

/* 6. CALL TO ACTION RIBBON - THEME ACCORDING (WARM LIGHT SANCTUARY) */
.lee-cta-ribbon-wrap {
  padding: 40px 0 70px;
  background: #ffffff;
}
.lee-cta-ribbon {
  position: relative;
  padding: 70px 40px;
  overflow: hidden;
  background-color: var(--ms-soft, #FFF8EC);
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  border: 1px solid var(--ms-border, #F1E1C4);
  box-shadow: 0 16px 40px rgba(253, 198, 101, 0.12);
}
.lee-cta-overlay {
  position: absolute;
  inset: 0;
  /* Pure warm cream illuminated overlay - absolutely NO dark/black colors */
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.94) 0%, rgba(255, 253, 249, 0.90) 100%);
  z-index: 1;
}
.lee-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #171717;
}
.lee-cta-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #171717;
  margin-bottom: 18px;
  line-height: 1.28;
}
.lee-cta-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 32px;
}

/* 7. LATEST DEVOTIONAL SPOTLIGHT */
.lee-devotional-spotlight {
  background: var(--ms-soft, #FFF8EC);
  padding: 95px 0;
  border-top: 1px solid var(--ms-border, #F1E1C4);
  border-bottom: 1px solid var(--ms-border, #F1E1C4);
}
.lee-devot-card {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--ms-border, #F1E1C4);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.lee-devot-img-wrap {
  position: relative;
  min-height: 380px;
}
.lee-devot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lee-devot-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(23, 23, 23, 0.85);
  color: var(--ms-gold, #FDC665);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--ms-gold, #FDC665);
  backdrop-filter: blur(4px);
}
.lee-devot-body {
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lee-devot-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b38128;
  margin-bottom: 10px;
}
.lee-devot-title {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #171717;
  margin-bottom: 14px;
  line-height: 1.3;
}
.lee-devot-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}
/* Audio Player */
.lee-audio-player {
  background: var(--ms-soft, #FFF8EC);
  border: 1px solid var(--ms-border, #F1E1C4);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.lee-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ms-gold, #FDC665);
  color: #171717;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.lee-play-btn:hover {
  background: var(--ms-gold-dark, #E6AD4A);
  transform: scale(1.05);
}
.lee-audio-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lee-audio-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
}
.lee-bar {
  width: 4px;
  height: 8px;
  background: var(--ms-gold, #FDC665);
  border-radius: 4px;
  transition: height 0.2s ease;
}
.lee-audio-player.playing .lee-bar:nth-child(odd) {
  animation: audioPulse 0.6s infinite alternate ease-in-out;
}
.lee-audio-player.playing .lee-bar:nth-child(even) {
  animation: audioPulse 0.9s infinite alternate ease-in-out;
}
@keyframes audioPulse {
  0% { height: 6px; }
  100% { height: 18px; }
}
.lee-audio-time {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

/* 8. LATEST STORIES / FROM OUR BLOG */
.lee-stories-section {
  background: #ffffff;
  padding: 95px 0;
}
.lee-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.lee-story-card {
  background: var(--ms-soft, #FFF8EC);
  border: 1px solid var(--ms-border, #F1E1C4);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.lee-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(253, 198, 101, 0.22);
}
.lee-story-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.lee-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lee-story-card:hover .lee-story-img {
  transform: scale(1.06);
}
.lee-story-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lee-story-title {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #171717;
  line-height: 1.35;
  margin-bottom: 12px;
}
.lee-story-title a {
  color: #171717;
  text-decoration: none;
  transition: color 0.25s ease;
}
.lee-story-title a:hover {
  color: var(--ms-gold-dark, #E6AD4A);
}
.lee-story-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 20px;
  flex-grow: 1;
}
.lee-story-btn {
  font-size: 14px;
  font-weight: 700;
  color: #171717;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.25s ease;
}
.lee-story-btn:hover {
  color: var(--ms-gold-dark, #E6AD4A);
}
.lee-center-btn-wrap {
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .lee-about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .lee-about-sub-img {
    right: 10px;
    bottom: -20px;
    width: 180px;
    height: 130px;
  }
  .lee-cards-grid,
  .lee-path-grid,
  .lee-stories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lee-devot-card {
    grid-template-columns: 1fr;
  }
  .lee-devot-img-wrap {
    min-height: 260px;
  }
  .lee-devot-body {
    padding: 30px 24px;
  }
  .lee-slider-controls {
    right: 20px;
    bottom: 20px;
  }
  .lee-slider-dots {
    left: 20px;
    bottom: 26px;
  }
}

@media (max-width: 600px) {
  .lee-hero-slider {
    min-height: 520px;
  }
  .lee-slide-content {
    padding: 60px 0;
  }
  .lee-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lee-cta-ribbon {
    padding: 60px 20px;
    border-radius: 20px;
  }
}


/* Sanctuary Cinema Hero Slider Integration (Exact Website Sizing & Layout) */
.sanctuary-cinema-hero .cinema-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.sanctuary-cinema-hero .cinema-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.cinema-controls-container {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.cinema-slider-dots,
.cinema-slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.cinema-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cinema-dot.active {
  background: var(--ms-gold, #FDC665);
  width: 28px;
  border-radius: 10px;
}
.cinema-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.cinema-arrow:hover {
  background: var(--ms-gold, #FDC665);
  color: #171717;
  border-color: var(--ms-gold, #FDC665);
}


/* ==========================================================================
   BOXED SANCTUARY HERO SLIDER (Exact Website Grid & Container Alignment)
   ========================================================================== */
.home-hero-wrapper {
  padding: 24px 0 20px 0;
  background: var(--ms-soft, #FFF8EC);
}
.home-hero-card {
  position: relative;
  width: 100%;
  height: clamp(420px, 54vh, 480px);
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--ms-border, #F1E1C4);
  box-shadow: 0 16px 45px rgba(23, 23, 23, 0.10);
  background-color: #171717;
}
.home-hero-card .cinema-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.home-hero-card .cinema-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.home-hero-card .cinema-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 23, 23, 0.72) 0%, rgba(35, 28, 15, 0.52) 60%, rgba(23, 23, 23, 0.35) 100%);
  z-index: 1;
}
.home-hero-card .cinema-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px 40px;
  box-sizing: border-box;
}
.home-hero-card .cinema-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 999px;
  background: rgba(253, 198, 101, 0.22);
  border: 1.5px solid var(--ms-gold, #FDC665);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-hero-card .cinema-pill-badge .badge-dot {
  color: var(--ms-gold, #FDC665);
  font-size: 11px;
}
.home-hero-card .cinema-headline {
  color: #ffffff;
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px 0;
  max-width: 820px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.home-hero-card .cinema-subhead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13.5px, 1.6vw, 15.5px);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 22px auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.home-hero-card .cinema-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--ms-gold, #FDC665);
  color: #171717 !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(253, 198, 101, 0.35);
  border: none;
  cursor: pointer;
}
.home-hero-card .cinema-cta-btn:hover {
  background: var(--ms-gold-dark, #E6AD4A);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(253, 198, 101, 0.5);
}
.home-hero-card .cinema-cta-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.home-hero-card .cinema-cta-btn:hover svg {
  transform: translateX(3px);
}
.home-hero-card .cinema-dots {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-hero-card .cinema-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-hero-card .cinema-dot.active {
  background: var(--ms-gold, #FDC665);
  width: 24px;
  border-radius: 8px;
}
.home-hero-card .cinema-arrows {
  position: absolute;
  bottom: 16px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-hero-card .cinema-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.home-hero-card .cinema-arrow:hover {
  background: var(--ms-gold, #FDC665);
  color: #171717;
  border-color: var(--ms-gold, #FDC665);
}

@media (max-width: 900px) {
  .home-hero-card {
    height: auto;
    min-height: 400px;
  }
  .home-hero-card .cinema-slide-inner {
    padding: 30px 20px;
  }
}
@media (max-width: 560px) {
  .home-hero-wrapper {
    padding: 16px 0 14px 0;
  }
  .home-hero-card {
    min-height: 380px;
    border-radius: 20px;
  }
  .home-hero-card .cinema-headline {
    font-size: 22px;
  }
  .home-hero-card .cinema-dots {
    left: 16px;
    bottom: 14px;
  }
  .home-hero-card .cinema-arrows {
    right: 14px;
    bottom: 12px;
  }
}
