/* ============================================
   EL-SHADDAI MINISTRIES — 2026 Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Primary Palette — Deep Navy & Gold */
  --navy-900: #0a1628;
  --navy-800: #0f1f3d;
  --navy-700: #152a4e;
  --navy-600: #1b3a6b;
  --navy-500: #1e4d8f;
  --navy-400: #2563a8;

  --gold-500: #c5a55a;
  --gold-400: #d4b96a;
  --gold-300: #e0ca82;
  --gold-200: #f0dfa6;
  --gold-100: #faf3dc;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e5ea;
  --gray-300: #c7cbd3;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Accent */
  --accent-warm: #f59e0b;
  --accent-rose: #e11d48;
  --accent-emerald: #059669;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 200ms var(--ease-smooth);
  --transition-base: 350ms var(--ease-smooth);
  --transition-slow: 600ms var(--ease-smooth);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-padding-sm {
  padding: var(--space-3xl) 0;
}

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

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: var(--space-md) auto;
}

.accent-line-left {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: var(--space-md) 0;
}

/* ---- Scroll Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy-800), var(--navy-700));
  color: var(--gold-200);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.announcement-bar a {
  color: var(--gold-300);
  text-decoration: underline;
  font-weight: 600;
}

.announcement-bar a:hover {
  color: var(--gold-100);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
  padding: var(--space-md) 0;
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-image {
  height: 104px; /* Doubled from 52px */
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}

.logo-estd {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity var(--transition-base), max-height var(--transition-base), margin var(--transition-base);
  margin-top: 2px;
  line-height: 1;
}

.header.scrolled .logo-image {
  height: 60px;
}

.header.scrolled .logo-estd {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
  overflow: hidden;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--gold-400);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--gold-300);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy-900) !important;
}

.nav-cta::after { display: none; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.5) 40%,
    rgba(10, 22, 40, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 130px var(--space-xl) 50px;
}

.hero-logo-container {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
}

.hero-logo-image {
  max-width: min(840px, 95vw);
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* Custom SVG Icons Styling */
.vision-card-icon svg,
.ministry-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-400);
  transition: transform var(--transition-base);
}

.vision-card:hover .vision-card-icon svg,
.ministry-card:hover .ministry-icon svg {
  transform: scale(1.1);
  stroke: var(--gold-300);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(197, 165, 90, 0.15);
  border: 1px solid rgba(197, 165, 90, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 1s var(--ease-smooth);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s var(--ease-smooth) 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 1s var(--ease-smooth) 0.4s both;
}

.hero-scripture {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-300);
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
  animation: fadeInUp 1s var(--ease-smooth) 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-smooth) 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 4px 15px rgba(197, 165, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 165, 90, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--navy-800);
  color: var(--gold-300);
  border: 1px solid var(--navy-600);
}

.btn-dark:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}


/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   WELCOME / ABOUT SECTION
   ============================================ */
.welcome-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.welcome-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.welcome-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.welcome-image:hover img {
  transform: scale(1.03);
}

.welcome-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
}

.welcome-image-overlay p {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold-200);
  font-size: 1rem;
}

.welcome-content .section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
}

.welcome-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.welcome-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.welcome-content p.lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  font-weight: 400;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--gray-200);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-700);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}

/* ============================================
   VISION & MISSION
   ============================================ */
.vision-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a55a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.vision-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.vision-header .section-label {
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.vision-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.vision-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), transparent);
}

.vision-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 165, 90, 0.2);
  transform: translateY(-4px);
}

.vision-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(197, 165, 90, 0.15), rgba(197, 165, 90, 0.05));
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
}

.vision-card h3 {
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-bottom: var(--space-md);
}

.vision-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   MINISTRIES / SERVICES
   ============================================ */
.ministries-section {
  background: var(--white);
}

.ministries-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.ministries-header .section-label {
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.ministries-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.ministry-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ministry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--navy-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}

.ministry-card:hover::after {
  transform: scaleX(1);
}

.ministry-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  color: var(--gold-300);
}

.ministry-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.ministry-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ============================================
   WORSHIP BANNER
   ============================================ */
.worship-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worship-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

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

.worship-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.4), rgba(10, 22, 40, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.worship-banner-content {
  max-width: 800px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.worship-banner-content p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

/* ============================================
   PASTOR'S MESSAGE
   ============================================ */
.leadership-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.pastor-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold-400);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pastor-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pastor-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.pastor-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.pastor-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.pastor-header .section-label {
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.pastor-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--navy-900);
  margin-bottom: var(--space-md);
}

.pastor-info-card h3,
.pastor-content h3 {
  font-family: var(--font-heading);
  color: var(--navy-800);
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.pastor-badge-tag {
  display: inline-block;
  background: rgba(197, 165, 90, 0.15);
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.pastor-role {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.leadership-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 165, 90, 0.3), transparent);
  margin: var(--space-4xl) 0;
}

/* Layout: photo left, text right on desktop */
.pastor-layout {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.pastor-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-900);
}

.pastor-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pastor-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-700);
  border-left: 3px solid var(--gold-400);
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.pastor-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-top: var(--space-sm);
  font-weight: 600;
}

.senior-pastor-card p,
.pastor-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   FAITH / BELIEFS
   ============================================ */
.faith-section {
  background: var(--white);
}

.faith-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.faith-header .section-label {
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.faith-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.faith-header p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.faith-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.faith-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: all var(--transition-base);
}

.faith-item:hover {
  border-color: var(--gold-200);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.faith-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  opacity: 0.5;
  min-width: 40px;
}

.faith-item h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 600;
}

.faith-item p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   SCHEDULE / MEETINGS
   ============================================ */
.schedule-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.schedule-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.schedule-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.schedule-header .section-label {
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.schedule-header h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.schedule-header p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.schedule-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  text-align: center;
}

.schedule-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 165, 90, 0.3);
  transform: translateY(-4px);
}

.schedule-icon {
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.schedule-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold-400);
  transition: transform var(--transition-base), stroke var(--transition-base), filter var(--transition-base);
}

.schedule-card:hover .schedule-icon svg {
  transform: scale(1.15) translateY(-2px);
  stroke: var(--gold-300);
  filter: drop-shadow(0 4px 12px rgba(197, 165, 90, 0.4));
}

.schedule-card h3 {
  color: var(--gold-300);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.schedule-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--gray-50);
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.contact-header .section-label {
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.contact-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.contact-card p,
.contact-card a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.contact-card a:hover {
  color: var(--gold-500);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 1 360px;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.footer-logo-image {
  height: 150px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.footer-column {
  flex: 1 1 auto;
  min-width: 170px;
  max-width: 250px;
}

.footer-column h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-column li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column a {
  color: inherit;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--gold-400);
}

/* ============================================
   PRAYER SUPPORT SECTION
   ============================================ */
.prayer-section {
  background: var(--white);
  position: relative;
}

.prayer-country:hover {
  border-color: var(--gold-300) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.prayer-country:hover h4 {
  color: var(--gold-500);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .welcome-grid,
  .leadership-grid,
  .pastor-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .pastor-image {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .pastor-image img {
    height: auto;
  }

  .worship-banner {
    height: 220px;
  }

  .vision-cards {
    grid-template-columns: 1fr;
  }

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

  .faith-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }


  .prayer-countries {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .logo-image {
    height: 70px;
  }

  .header.scrolled .logo-image {
    height: 48px;
  }

  .logo-estd {
    font-size: 0.65rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section-padding {
    padding: var(--space-2xl) 0;
  }

  /* Mobile Nav */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-2xl) var(--space-2xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Welcome */
  .welcome-image img {
    height: 300px;
  }

  .welcome-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  /* Ministries */
  .ministries-grid {
    grid-template-columns: 1fr;
  }

  /* Pastor */
  .senior-pastor-card {
    padding: var(--space-xl);
  }

  .pastor-image {
    max-width: 100%;
  }

  .pastor-image img {
    height: auto;
  }

  /* Gallery */
  /* Worship Banner */
  .worship-banner {
    height: 180px;
  }

  /* Prayer */
  .prayer-countries {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Schedule */
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-logo-image {
    height: 110px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .welcome-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
  }
}

/* Adjust hero layout on short screens to prevent overflow */
@media (max-height: 780px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-logo-container {
    margin-bottom: var(--space-lg);
  }
  .hero-subtitle {
    margin-bottom: var(--space-lg);
  }
  .hero-scripture {
    margin-bottom: var(--space-lg);
  }
}

@media (max-height: 660px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .hero-logo-container {
    margin-bottom: var(--space-md);
  }
}
