@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Semi+Condensed:wght@400;500;600;700;800;900&display=swap");@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
  /* RIG Official Brand Kit Colors */
  --bg-primary: #f3ede3; /* Brand Cream */
  --bg-secondary: #e9e2d5;
  --bg-tertiary: #dfd7c7;
  --text-primary: #232323; /* Brand Charcoal */
  --text-secondary: #474b59; /* Brand Slate */

  /* Accent Colors */
  --accent-red: #de4b2a; /* Brand Red-Orange */
  --accent-gold: #efcb7d; /* Brand Gold */
  --accent-gold-light: #f5e1b5;
  --accent-purple: var(--accent-red); /* Mapping old name to new brand color */

  /* Utilities */
  --border-color: rgba(35, 35, 35, 0.1);
  --glass-bg: rgba(243, 237, 227, 0.95);
  --glass-border: rgba(35, 35, 35, 0.05);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --glow: 0 0 20px rgba(222, 75, 42, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--accent-red),
    var(--accent-gold)
  );
  --gradient-text: linear-gradient(
    to right,
    var(--text-primary),
    var(--accent-red)
  );

  /* Layout */
  --max-width: 1280px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 8rem;

  /* Border Radius - Sharp Edges (Mercy Culture Style) */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-full: 0;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  :root {
    --spacing-md: 0.75rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 4rem;
  }
}

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

body {
  font-family:
    "Barlow",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: var(--text-secondary);
}

/* Margin Utilities */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding Utilities */
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

.px-sm { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-xl { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

.py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

/* Sizing Utilities */
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Typography Extras */
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }


/* Layout Utilities */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.break-words {
  word-break: break-word;
  overflow-wrap: break-word;
}


@media (max-width: 768px) {
  .section {
    padding: var(--spacing-xl) 0;
  }
}

/* Glassmorphism */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.5);
}

.btn-accent {
  background: var(--gradient-primary);
  color: white;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease-out forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

/* Image hover effect */

.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}




/* RIG Nation - Unique Styling Additions */
/* 2026 Brand Kit Implementation */

:root {
  /* Brand Colors - Restored to Official RIG Colors */
  --color-apostolic-flame: #de4b2a;
  --color-prophetic-cream: #f3ede3; 
  --color-shekinah-gold: #EFCB7D;
  --color-holy-charcoal: #232323; 
  --color-muted-blue: #474b59;
  
  /* Typographical Fallback - Kept Mercy Culture font */
  --font-primary: 'Barlow Semi Condensed', 'Barlow', system-ui, sans-serif;
}

/* =========================================
   GLOBAL OVERRIDES & BASE
   ========================================= */

body {
  background-color: var(--color-prophetic-cream) !important;
  color: var(--color-holy-charcoal) !important;
  font-family: var(--font-primary) !important;
  background-image: none !important;
  background-attachment: fixed;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Watermark Typography Utility */
.watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(35, 35, 35, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* =========================================
   GLASSMORPHISM UTILITIES
   ========================================= */

.glass-panel {
  background: #e9e2d5 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(35, 35, 35, 0.1) !important;
  box-shadow: none !important;
}

/* Force flat backgrounds globally to fix inline styles that used glass */
[style*="rgba(255, 255, 255"] {
  background-color: #e9e2d5 !important;
}
[style*="rgba(255,255,255"] {
  background-color: #e9e2d5 !important;
}

.glass-panel-dark {
  background: #232323 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(243, 237, 227, 0.1) !important;
  box-shadow: none !important;
  color: var(--color-prophetic-cream) !important;
}

/* =========================================
   MICRO-ANIMATIONS & HOVER STATES
   ========================================= */

/* Unique Action Buttons */
.btn-primary, button {
  background-color: var(--color-apostolic-flame) !important;
  color: white !important;
  border: none !important;
  border-radius: 0 !important; /* Sharp edges for Mercy Culture */
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
}

.btn-primary:hover, button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important; 
  background-color: #c93d20 !important;
}

/* Nav Links Underline Animation */
nav a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-shekinah-gold);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* =========================================
   ASYMMETRICAL & EDITORIAL LAYOUT UTILS
   ========================================= */

/* Offset Image Card */
.editorial-image-container {
  position: relative;
  padding: 20px;
}

.editorial-image-container img {
  border-radius: 8px;
  box-shadow: 10px 10px 0px var(--color-muted-blue);
  transition: transform 0.4s ease;
}

.editorial-image-container:hover img {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0px var(--color-shekinah-gold);
}

/* =========================================
   MODERN SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-prophetic-cream); 
}
::-webkit-scrollbar-thumb {
  background: var(--color-muted-blue); 
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-apostolic-flame); 
}
.top-nav-banner {
  display: none;
}
.top-nav-banner__content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-nav-banner__badge {
  background-color: var(--color-apostolic-flame);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 750;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-nav-banner__text {
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-nav-banner__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-nav-banner__link {
  color: var(--color-prophetic-cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.top-nav-banner__link:hover {
  opacity: 1;
  color: var(--color-shekinah-gold);
}

.top-nav-banner__separator {
  opacity: 0.3;
  color: var(--color-prophetic-cream);
}

@media (max-width: 768px) {
  .top-nav-banner__links {
    display: none;
  }
  .top-nav-banner {
    justify-content: center;
    padding: 0 1rem;
  }
  .top-nav-banner__text {
    font-size: 0.8rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #000000;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.navbar__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1300px) {
  .navbar__container {
    padding: 0 1.5rem;
  }
}

.navbar__left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-prophetic-cream);
  text-decoration: none;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.navbar__logo:hover {
  opacity: 0.8;
}

.navbar__logo-img {
  height: 40px;
  object-fit: contain;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__banner-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 1400px) {
  .navbar__links,
  .navbar__banner-links {
    gap: 0.75rem;
  }
  .navbar__right,
  .navbar__actions {
    gap: 1rem;
  }
  .navbar__left {
    gap: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .navbar__links,
  .navbar__banner-links {
    gap: 0.5rem;
  }
  .navbar__right,
  .navbar__actions {
    gap: 0.75rem;
  }
  .navbar__left {
    gap: 1rem;
  }
}

.navbar__link {
  color: var(--color-prophetic-cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .navbar__link {
    font-size: 0.88rem;
  }
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-shekinah-gold);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-shekinah-gold);
  transition: width 0.3s ease;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__separator {
  color: rgba(243, 237, 227, 0.4);
  font-size: 0.88rem;
  user-select: none;
}

.btn-primary-nav {
  background-color: var(--color-apostolic-flame);
  color: white;
  padding: 0.6rem 1.6rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(186, 12, 47, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(186, 12, 47, 0.35);
  color: white;
}

/* Mobile styles */
.mobile-only {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  height: calc(100vh - 80px);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu-content a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-prophetic-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
  color: var(--color-shekinah-gold);
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

.mobile-nav-actions {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.navbar__actions a,
.mobile-nav-actions a,
.mobile-menu-btn {
  color: var(--color-prophetic-cream) !important;
}

/* Dropdown Styles */
.navbar__dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.navbar__dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1000;
  border-radius: 8px;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__dropdown:hover .navbar__dropdown-content {
  display: flex;
  flex-direction: column;
}

.navbar__dropdown-content a {
  color: var(--color-prophetic-cream);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s, color 0.2s;
}

.navbar__dropdown-content a:hover {
  background-color: rgba(239, 203, 125, 0.1);
  color: var(--color-shekinah-gold);
}

/* Mobile Dropdown Styles */
.mobile-dropdown-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-dropdown-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-prophetic-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid rgba(239, 203, 125, 0.3);
}

.mobile-dropdown-content.open {
  display: flex;
}

.mobile-dropdown-content a {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Watch Live Pulsing Dot Animation */
.navbar__live-link {
  color: var(--color-apostolic-flame) !important;
}
.navbar__live-link:hover {
  color: var(--color-shekinah-gold) !important;
}

@keyframes pulse-live {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem 2rem; /* 2.5rem row gap, 2rem column gap */
  margin-bottom: 1rem;
}

.footer-contact-row {
  grid-column: 1 / -1;
  margin-top: -0.5rem; /* pull up to offset grid gap */
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-desc {
  margin-top: var(--spacing-md);
  max-width: 300px;
}

.social-links {
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(35, 35, 35, 0.05);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-holy-charcoal);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(35, 35, 35, 0.05);
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}
.event-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.event-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 2rem;
  background-color: var(--color-obsidian);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.event-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: black;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 10;
}

.event-modal-close:hover {
  transform: scale(1.1);
}

.event-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .event-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.event-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-modal-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--color-prophetic-cream);
}

.event-modal-main-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-obsidian);
  font-weight: bold;
}

.event-modal-details {
  display: flex;
  flex-direction: column;
}

.event-modal-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.event-modal-title {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.event-modal-date {
  font-size: 1.1rem;
  font-weight: 600;
}

.event-modal-desc {
  color: var(--color-silver);
  line-height: 1.6;
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.event-modal-add-btn {
  margin-top: auto;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ============================================================
   RIG NATION CHURCHES — Home Page Layout and Aesthetic Themes
   ============================================================ */

.home-page {
  background-color: var(--color-prophetic-cream);
  color: var(--color-holy-charcoal);
  overflow-x: hidden;
  position: relative;
}

/* Background patterns with low opacity */
.home-bg-image {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15; /* Increased to 15% opacity for better visibility */
  filter: brightness(1.15); /* Slightly boosted highlights */
}

.home-bg-image--1 {
  top: 800px;
  height: 1000px;
  background-image: url('/images/bg-home-1.jpg');
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.home-bg-image--2 {
  bottom: 400px;
  height: 1200px;
  background-image: url('/images/bg-home-2.jpg');
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

/* Announcement Banner */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: var(--color-apostolic-flame);
  color: var(--color-prophetic-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1100;
  padding: 0 2rem;
  box-shadow: 0 4px 15px rgba(186, 12, 47, 0.15);
  font-size: 0.9rem;
}

.announcement-banner__badge {
  background-color: var(--color-prophetic-cream);
  color: var(--color-apostolic-flame);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.announcement-banner__text {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Generic Section Styles */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--color-muted-blue);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* 1. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 880px; /* Expanded min-height to fit the sliding image gallery */
  height: auto;
  padding: 6rem 0 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-holy-charcoal);
  background-image: linear-gradient(
      to bottom,
      rgba(28, 28, 28, 0.45) 0%,
      rgba(28, 28, 28, 0.8) 100%
    ),
    url('/assets/hero-BAJYsBNf.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Hero Scrolling Image Gallery */
.hero-gallery {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 3.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Subtle dark overlay at the screen edges for smooth fade */
.hero-gallery::before,
.hero-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.hero-gallery::before {
  left: 0;
  background: linear-gradient(to right, rgba(28, 28, 28, 0.95) 0%, transparent 100%);
}
.hero-gallery::after {
  right: 0;
  background: linear-gradient(to left, rgba(28, 28, 28, 0.95) 0%, transparent 100%);
}

.hero-gallery__row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.hero-gallery__track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
}

.hero-gallery__item {
  width: 220px;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-gallery__item:hover {
  transform: scale(1.03);
  border-color: var(--color-shekinah-gold);
  cursor: pointer;
}

.hero-gallery__row--left .hero-gallery__track {
  animation: marquee-left 35s linear infinite;
}

.hero-gallery__row--right .hero-gallery__track {
  animation: marquee-right 35s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Mobile optimizations for gallery */
@media (max-width: 768px) {
  .hero-gallery {
    margin-top: 2.5rem;
  }
  .hero-gallery__item {
    width: 160px;
    height: 100px;
  }
  .hero-gallery::before,
  .hero-gallery::after {
    width: 60px;
  }
}

.hero-section__content {
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  z-index: 10;
}

.hero-section__social-links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}

.hero-section__social-links a {
  color: rgba(243, 237, 227, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-section__social-links a:hover {
  color: var(--color-prophetic-cream);
  transform: translateY(-2px);
}

.hero-section__headline {
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--color-prophetic-cream);
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.hero-section__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  background-color: rgba(12, 12, 12, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-section__details-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--color-prophetic-cream);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-section__ctas a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  cursor: pointer;
}

.hero-section__ctas .btn-primary {
  background-color: var(--color-apostolic-flame);
  border-color: var(--color-apostolic-flame);
  color: var(--color-prophetic-cream);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-section__ctas .btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-prophetic-cream);
  backdrop-filter: blur(5px);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-section__ctas .btn-secondary:hover {
  background-color: var(--color-prophetic-cream);
  color: var(--color-holy-charcoal);
  border-color: var(--color-prophetic-cream);
}

.flex-center-gap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.livestream-pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3333;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  animation: pulsing-dot-animation 1.6s infinite;
}

.btn-primary .livestream-pulsing-dot {
  background-color: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulsing-dot-white-animation 1.6s infinite;
}

@keyframes pulsing-dot-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 51, 51, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

@keyframes pulsing-dot-white-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* 2. MISSION SECTION */
.mission-section {
  padding: 5rem 0;
  background-color: transparent;
  position: relative;
}

.mission-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.mission-section__headline {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-holy-charcoal);
  margin-bottom: 2rem;
}

.mission-section__body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(28, 28, 28, 0.75);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.mission-section__link {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-holy-charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-holy-charcoal);
  padding-bottom: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-section__link:hover {
  color: var(--color-apostolic-flame);
  border-color: var(--color-apostolic-flame);
  transform: translateX(5px);
}

.mission-section__quote {
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-muted-blue);
  opacity: 0.85;
  border-left: 3px solid var(--color-shekinah-gold);
  padding-left: 2rem;
}

/* 3. JOURNEY SECTION */
.journey-section {
  padding: 4rem 0;
  background-color: var(--color-holy-charcoal);
  color: var(--color-prophetic-cream);
  position: relative;
}

.journey-section__header {
  text-align: center;
  margin-bottom: 6rem;
}

.journey-section__headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.journey-section__subhead {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-shekinah-gold);
  opacity: 0.9;
}

.journey-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.journey-card {
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-holy-charcoal);
}

.journey-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-apostolic-flame);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.journey-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-apostolic-flame);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
}

.journey-card__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.journey-card__body {
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

/* 4. MERCH / STORE SECTION */
.store-section {
  padding: 4rem 0;
  background-color: transparent;
}

.store-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 4rem;
  border-right: 4px solid var(--color-apostolic-flame);
}

.store-section__content {
  flex: 1;
}

.store-section__headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--color-holy-charcoal);
  line-height: 1.1;
  margin: 1rem 0;
}

.store-section__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(28, 28, 28, 0.75);
  max-width: 600px;
}

.store-section__action {
  flex-shrink: 0;
}

/* 4. MERCH / STORE SECTION */
.store-merch-section {
  padding: 4rem 0;
  background-color: var(--color-holy-charcoal);
  background-image: linear-gradient(
      rgba(35, 35, 35, 0.88) 0%,
      rgba(35, 35, 35, 0.88) 100%
    ),
    url('/images/bg-home-1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-prophetic-cream);
  margin-bottom: 5rem; /* Gap between store and sermons sections */
}

/* 5. SERMONS & PODCASTS SECTION */
.podcasts-section {
  padding: 4rem 0;
  background-color: var(--color-holy-charcoal);
  background-image: linear-gradient(
      rgba(35, 35, 35, 0.88) 0%,
      rgba(35, 35, 35, 0.88) 100%
    ),
    url('/images/bg-home-2.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-prophetic-cream);
}

.podcasts-section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.podcasts-section__headline {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 800px;
  margin: 0 auto;
}

.podcasts-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.podcast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.podcast-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-shekinah-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.podcast-item h3 {
  font-size: 2rem;
  font-weight: 800;
}

.podcast-item p {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

/* 6. RIG UNIVERSITY SECTION */
.rigu-section {
  padding: 4rem 0;
  background-color: transparent;
}

.rigu-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 3.5rem;
  border-left: 4px solid var(--color-shekinah-gold);
}

.rigu-section__content {
  flex: 1;
}

.rigu-section__headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--color-holy-charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.rigu-section__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(28, 28, 28, 0.75);
  max-width: 600px;
}

.rigu-section__action {
  flex-shrink: 0;
}

/* 7. UPCOMING EVENTS SECTION */
.events-section {
  padding: 4rem 0;
  background-color: var(--color-holy-charcoal);
  color: var(--color-prophetic-cream);
}

.events-section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.events-section__headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
}

.events-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-apostolic-flame);
}

.event-card__badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--color-shekinah-gold);
  letter-spacing: 0.15em;
  border: 1px solid var(--color-shekinah-gold);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.event-card__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 600;
}

.event-card__title {
  font-size: 1.6rem;
  font-weight: 800;
}

.event-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
}

/* 8. FAQ SECTION */
.faq-section {
  padding: 4rem 0 1rem 0;
  background-color: transparent;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.faq-section__headline {
  font-size: clamp(40px, 5vw, 65px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-holy-charcoal);
  letter-spacing: -0.03em;
  position: sticky;
  top: 100px;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
  color: var(--color-holy-charcoal);
}

.faq-item__question {
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.faq-item__icon {
  color: var(--color-muted-blue);
  flex-shrink: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease;
}

.faq-item__answer.open {
  max-height: 300px;
  margin-top: 1.2rem;
}

.faq-item__answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(28, 28, 28, 0.75);
}

/* 9. THE REFINERY SECTION */
.refinery-section {
  padding: 1rem 0 4rem 0;
  background-color: transparent;
}

.refinery-section__inner {
  padding: 5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.refinery-section__headline {
  font-size: clamp(32px, 4.5vw, 55px);
  font-weight: 900;
  color: var(--color-holy-charcoal);
  letter-spacing: -0.02em;
  margin: 1.5rem 0;
}

.refinery-section__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(28, 28, 28, 0.75);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .mission-section__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .faq-section__headline {
    position: static;
  }
  .rigu-section__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .store-section__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mission-section,
  .journey-section,
  .store-section,
  .podcasts-section,
  .rigu-section,
  .events-section,
  .faq-section,
  .refinery-section {
    padding: 4rem 0;
  }
  
  .store-section__inner, 
  .rigu-section__inner {
    padding: 2rem;
  }
  
  .hero-section {
    min-height: 500px;
    height: auto;
    padding: 6rem 0;
  }
}

/* Sermons Scroll Container Scrollbar Hiding */
.sermons-scroll-container::-webkit-scrollbar {
  display: none;
}
.sermons-scroll-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for horizontal scrolling containers */
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Interactive Map Popover */
.map-pin-popover {
  position: absolute;
  top: -15px;
  left: 25px;
  width: 250px;
  background: var(--bg-primary) !important;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  animation: fadeIn 0.3s ease-out forwards;
}

@media (max-width: 768px) {
  .map-pin-popover {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }
}

.map-pin-popover {
  display: none;
  pointer-events: none; /* Let clicks pass through to the <a> tag */
}

.map-pin-container:hover .map-pin-popover {
  display: block;
}

/* WORLD MAP SECTION */
.world-map-section {
  position: relative;
  width: 100%;
}
.world-map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.world-map-image {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin-container {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
.map-pin-container:hover,
.map-pin-container.active {
  z-index: 50;
}
.map-pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: var(--color-apostolic-flame);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(222, 75, 42, 0.5);
  z-index: 2;
}
.map-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: var(--color-apostolic-flame);
  border-radius: 50%;
  opacity: 0.5;
  animation: pulse 2s infinite;
  z-index: 1;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.map-pin-container.active .map-pin-popover {
  display: block;
}

/* ============================================================
   HERO ENTRANCE STAGGERED ANIMATIONS (FLOAT IN)
   ============================================================ */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-delay-1 {
  animation-delay: 150ms;
}

.hero-delay-2 {
  animation-delay: 300ms;
}

.hero-delay-3 {
  animation-delay: 450ms;
}

/* Campus Filter Dropdown Styling */
.campus-filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.campus-filter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-holy-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.campus-filter-select {
  padding: 0.6rem 2.5rem 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-holy-charcoal);
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  appearance: none; /* remove default arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23111111' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.campus-filter-select:hover {
  border-color: var(--color-holy-charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.campus-filter-select:focus {
  border-color: var(--color-shekinah-gold);
}
.promo-banner-container {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 0 1rem;
  pointer-events: none;
}

.promo-banner {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-prophetic-cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  max-width: 800px;
  width: 100%;
}

.promo-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .promo-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.promo-banner__text {
  flex: 1;
}

.promo-banner__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: black !important;
  line-height: 1.3;
}

.promo-banner__subtitle {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  color: #333 !important;
}

.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.promo-banner__close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: black !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: color 0.2s;
}

.promo-banner__close:hover {
  color: var(--color-apostolic-flame);
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideUpBanner 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s; /* Show it 1 second after page load */
  opacity: 0;
}
/* ============================================================
   LIVE ARCHIVE — "recorded live" video-forward layout
   ============================================================ */
.live-archive {
  width: 100%;
}

.live-archive__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.live-archive__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-apostolic-flame, #de4b2a);
  margin-bottom: 0.8rem;
}

.live-archive__rec-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ff3333;
  box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  animation: live-archive-pulse 1.6s infinite;
}

@keyframes live-archive-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(255, 51, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

.live-archive__heading {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 850;
  color: var(--color-holy-charcoal, #232323);
  letter-spacing: -0.015em;
}

.live-archive__subheading {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary, #474b59);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.live-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.live-archive__card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-holy-charcoal, #232323);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: inherit;
}

.live-archive__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5);
}

.live-archive__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
}

.live-archive__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.live-archive__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: rgba(222, 75, 42, 0.92);
  border-radius: 4px;
}

.live-archive__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}

.live-archive__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.live-archive__card:hover .live-archive__play {
  background-color: var(--color-apostolic-flame, #de4b2a);
  border-color: var(--color-apostolic-flame, #de4b2a);
  transform: translate(-50%, -50%) scale(1.08);
}

.live-archive__meta {
  padding: 1.2rem 1.3rem 1.5rem;
  color: var(--color-prophetic-cream, #f3ede3);
}

.live-archive__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-shekinah-gold, #efcb7d);
  margin-bottom: 0.5rem;
}

.live-archive__title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.live-archive__submeta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Modal player */
.live-archive__modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  animation: live-archive-fade 0.2s ease;
}

@keyframes live-archive-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.live-archive__modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.live-archive__close {
  position: absolute;
  top: -3rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s ease;
}

.live-archive__close:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.live-archive__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.live-archive__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.live-archive__modal-meta {
  margin-top: 1.2rem;
  color: var(--color-prophetic-cream, #f3ede3);
}

.live-archive__modal-meta h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.live-archive__modal-meta p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.live-archive__modal-desc {
  line-height: 1.6;
}

.live-archive__watch-yt {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-shekinah-gold, #efcb7d);
  text-decoration: none;
}

.live-archive__watch-yt:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .live-archive__close {
    top: -2.8rem;
  }
}
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 2rem;
  background-color: var(--color-obsidian);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: black;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 10;
}

.product-modal-close:hover {
  transform: scale(1.1);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-modal-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--color-prophetic-cream);
}

.product-modal-main-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-obsidian);
  font-weight: bold;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.7;
}

.gallery-nav-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.left {
  left: 0.5rem;
}

.gallery-nav-btn.right {
  right: 0.5rem;
}

.product-modal-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.product-modal-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-modal-thumbnails::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.thumbnail {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  opacity: 0.6;
}

.thumbnail:hover, .thumbnail.active {
  opacity: 1;
}

.thumbnail.active {
  border-color: var(--color-apostolic-flame);
}

.product-modal-details {
  display: flex;
  flex-direction: column;
}

.product-modal-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-modal-title {
  font-size: 2rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.product-modal-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-apostolic-flame);
  margin-bottom: 1.5rem;
}

.product-modal-desc {
  color: var(--color-silver);
  line-height: 1.6;
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.product-modal-add-btn {
  margin-top: auto;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
