/* ═══════════════════════════════════════════════════════════════
   ABUNDANT LIFE CHURCH — Divine White Palette
   Inspired by Louvre Museum UI Structure
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ── */
:root {
  --white-pure: #FFFFFF;
  --white-soft: #FAFAF8;
  --white-warm: #F5F3EF;
  --white-linen: #EDE9E3;
  --gold-divine: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07D2E;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --charcoal-soft: #6B6B6B;
  --accent-cream: #F0EBE0;
  --accent-sage: #A8B5A0;
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-strong: rgba(0, 0, 0, 0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 110px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white-pure);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--transition-smooth);
}

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

/* ── Glass Door Intro Overlay ── */
.intro-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a12;
  pointer-events: auto;
}

.intro-overlay.opening .door-left {
  animation: doorSlideLeft 2.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-overlay.opening .door-right {
  animation: doorSlideRight 2.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-overlay.opening .intro-content {
  animation: fadeOutUp 1s ease forwards;
}

.intro-overlay.hidden {
  pointer-events: none;
  visibility: hidden;
}

.glass-doors {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
}

.door-left, .door-right {
  width: 50%;
  height: 100%;
  position: relative;
  background: linear-gradient(160deg,
    #1a1a2e 0%,
    #16213e 40%,
    #0f1626 70%,
    #1a1a2e 100%);
  overflow: hidden;
}

.door-left {
  border-right: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: inset -20px 0 40px rgba(201, 168, 76, 0.05);
}

.door-right {
  border-left: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: inset 20px 0 40px rgba(201, 168, 76, 0.05);
}

.door-left::before, .door-right::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 10%, var(--gold-divine) 50%, transparent 90%);
}

.door-left::before { right: 0; }
.door-right::before { left: 0; }

.door-left::after, .door-right::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 80px;
  border-radius: 6px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold-divine), var(--gold-dark));
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.1);
}

.door-left::after { right: 24px; }
.door-right::after { left: 24px; }

/* Glass texture lines */
.door-pattern {
  position: absolute;
  top: 8%; left: 8%;
  width: 84%; height: 84%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  pointer-events: none;
}

.door-pattern::before {
  content: '';
  position: absolute;
  top: 12%; left: 12%;
  width: 76%; height: 76%;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.door-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-divine);
  opacity: 0.25;
  letter-spacing: 0.4em;
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeInContent 1.5s ease 0.3s both;
}

.intro-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.intro-content .subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

@keyframes fadeInContent {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutUp {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-30px); }
}

@keyframes doorSlideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-105%); }
}

@keyframes doorSlideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(105%); }
}

/* ── Welcome Video Section ── */
.welcome-video-section {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 9999;
  background: var(--charcoal);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-video-section.active {
  display: flex;
}

.welcome-video-section.hidden {
  display: none;
}

.video-container {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.scroll-prompt {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: floatUp 2s ease-in-out infinite;
  color: var(--white-warm);
}

.scroll-prompt span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-prompt .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-divine);
  border-bottom: 2px solid var(--gold-divine);
  transform: rotate(45deg);
}

@keyframes floatUp {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ═══════════════════════════════════════
   NAVIGATION (Louvre-inspired)
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white-pure);
  transition: all 0.4s var(--transition-smooth);
  border-bottom: 1px solid var(--white-linen);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px var(--shadow-soft);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 60px;
  border-bottom: 1px solid var(--white-linen);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
}

.header-search svg {
  width: 18px; height: 18px;
}

.site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Admin Gear Button */
.admin-gear-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white-linen);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
  color: var(--charcoal-soft);
  position: relative;
}

.admin-gear-btn:hover {
  border-color: var(--gold-divine);
  color: var(--gold-divine);
  transform: rotate(45deg);
}

.admin-gear-btn svg {
  width: 16px;
  height: 16px;
}

/* Admin gear popup */
.admin-gear-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white-pure);
  border: 1px solid var(--white-linen);
  box-shadow: 0 8px 30px var(--shadow-medium);
  padding: 18px 22px;
  min-width: 220px;
  z-index: 2000;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--transition-smooth), transform 0.25s var(--transition-smooth);
}

.admin-gear-popup.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.admin-gear-popup h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--white-linen);
}

.admin-gear-popup .popup-field {
  margin-bottom: 10px;
}

.admin-gear-popup .popup-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 4px;
}

.admin-gear-popup .popup-field input {
  width: 100%;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  border: 1px solid var(--white-linen);
  background: var(--white-soft);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}

.admin-gear-popup .popup-field input:focus {
  border-color: var(--gold-divine);
}

.admin-gear-popup .popup-error {
  color: #c0392b;
  font-size: 0.78rem;
  margin-bottom: 8px;
  display: none;
}

.admin-gear-popup .popup-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.admin-gear-popup .popup-actions .btn-gold {
  width: 100%;
  justify-content: center;
  font-size: 0.68rem;
  padding: 10px;
}

.admin-gear-popup .popup-actions .btn-ghost-small {
  width: 100%;
  text-align: center;
  padding: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--white-linen);
  background: transparent;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}

.admin-gear-popup .popup-actions .btn-ghost-small:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white-pure);
}

.btn-primary {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  background: var(--gold-divine);
  color: var(--white-pure);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-primary svg {
  width: 14px; height: 14px;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 50px;
}

.nav-main a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold-divine);
  transform: scaleX(0);
  transition: transform 0.3s var(--transition-smooth);
}

.nav-main a:hover::after,
.nav-main a.active::after {
  transform: scaleX(1);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--white-linen);
}

.nav-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--white-pure);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.mobile-nav-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--charcoal);
  background: none;
  border: none;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  margin-top: var(--nav-height);
  overflow: hidden;
  background: var(--charcoal);
}

.hero.hero--compact {
  height: 45vh;
  min-height: 300px;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a3a3a 50%, var(--charcoal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Replay Intro Button */
.replay-intro-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white-pure);
  border: 1.5px solid var(--white-linen);
  box-shadow: 0 4px 20px var(--shadow-medium);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: all 0.3s var(--transition-smooth);
  border-radius: 30px;
}

.replay-intro-btn:hover {
  border-color: var(--gold-divine);
  color: var(--gold-divine);
  box-shadow: 0 6px 25px var(--shadow-medium);
  transform: translateY(-2px);
}

.replay-intro-btn svg {
  color: var(--gold-divine);
}

.hero-pause {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--white-pure);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.hero-pause:hover { opacity: 1; }

/* ── Welcome Banner (Louvre "WELCOME TO" strip) ── */
.welcome-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3rem;
  background: var(--charcoal);
  color: var(--white-pure);
  flex-wrap: wrap;
  gap: 20px;
}

.welcome-info h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.welcome-info p {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.welcome-times {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.welcome-times .arrow-icon {
  color: var(--gold-divine);
}

.welcome-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-divine);
  color: var(--white-pure);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white-pure);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn-ghost:hover {
  border-color: var(--white-pure);
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════
   HIGHLIGHTS / CONTENT SECTIONS
   ═══════════════════════════════════════ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--charcoal);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold-divine);
  margin: 1rem auto 0;
}

/* Card Grid (Louvre Highlights style) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background: var(--white-pure);
  border: 1px solid var(--white-linen);
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 12px 40px var(--shadow-medium);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 220px;
  background: var(--white-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

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

.image-placeholder {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  text-align: center;
  padding: 1rem;
}

.image-placeholder svg {
  display: block;
  margin: 0 auto 10px;
  opacity: 0.3;
}

.card-body {
  padding: 20px 25px 25px;
}

.card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-divine);
  margin-bottom: 8px;
}

.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-body p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

a.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

.section--cream {
  background: var(--white-soft);
}

.section--warm {
  background: var(--white-warm);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white-pure);
}

.section--dark .section-title {
  color: var(--white-pure);
}

.section--dark .section-title::after {
  background: var(--gold-divine);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 450px;
  background: var(--white-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.about-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

.about-text .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-divine);
  border-bottom: 1.5px solid var(--gold-divine);
  padding-bottom: 3px;
  transition: all 0.3s;
}

.about-text .btn-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ── Service Times ── */
.times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.time-card {
  padding: 40px 30px;
  background: var(--white-pure);
  border: 1px solid var(--white-linen);
  transition: all 0.3s var(--transition-smooth);
}

.time-card:hover {
  box-shadow: 0 8px 30px var(--shadow-soft);
  transform: translateY(-3px);
}

.time-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.time-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.time-card p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

.time-card .time {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-divine);
  margin-top: 10px;
}

/* ── Prayer Request Form ── */
.prayer-form {
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-linen);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white-pure);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-divine);
}

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

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* ── Events / Calendar ── */
.events-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--white-linen);
  align-items: flex-start;
}

.event-date {
  min-width: 80px;
  text-align: center;
  padding: 12px;
  background: var(--gold-divine);
  color: var(--white-pure);
}

.event-date .month {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.event-details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.event-details p {
  font-size: 0.83rem;
  color: var(--charcoal-soft);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: var(--white-warm);
  padding: 60px 3rem 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold-divine);
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white-pure);
}

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.3s;
  color: rgba(255,255,255,0.6);
}

.social-links a:hover {
  border-color: var(--gold-divine);
  color: var(--gold-divine);
}

/* ═══════════════════════════════════════
   PAGE-SPECIFIC: ABOUT, MINISTRIES, etc.
   ═══════════════════════════════════════ */
.page-hero {
  height: 40vh;
  min-height: 300px;
  margin-top: var(--nav-height);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white-pure), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-pure);
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-divine);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.content-block p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.contact-info-block p {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  color: var(--charcoal);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: var(--white-soft);
  color: var(--charcoal);
  border: 1px solid var(--white-linen);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold-divine);
}

/* ═══════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-warm);
}

.admin-login-box {
  background: var(--white-pure);
  padding: 50px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 40px var(--shadow-soft);
  text-align: center;
}

.admin-login-box h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.admin-login-box .subtitle {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
}

.admin-login-box .form-group {
  text-align: left;
}

.admin-login-box .form-group label {
  color: var(--charcoal);
}

.admin-login-box .form-group input {
  background: var(--white-soft);
  color: var(--charcoal);
  border: 1px solid var(--white-linen);
}

.admin-login-box .form-group input:focus {
  border-color: var(--gold-divine);
}

.admin-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-bottom: 15px;
  display: none;
}

/* Admin Dashboard */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--charcoal);
  color: var(--white-pure);
  padding: 30px 0;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 25px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.admin-sidebar-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-divine);
  margin-top: 4px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

.admin-nav a:hover,
.admin-nav a.active {
  color: var(--white-pure);
  background: rgba(255,255,255,0.06);
}

.admin-nav a.active {
  border-left: 3px solid var(--gold-divine);
}

.admin-nav a svg {
  width: 18px; height: 18px;
  opacity: 0.7;
}

.admin-content {
  margin-left: 260px;
  flex: 1;
  padding: 30px;
  background: var(--white-warm);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.admin-topbar h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.admin-panel-card {
  background: var(--white-pure);
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px var(--shadow-soft);
}

.admin-panel-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-linen);
}

.admin-field {
  margin-bottom: 18px;
}

.admin-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 6px;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border: 1px solid var(--white-linen);
  background: var(--white-soft);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}

.admin-field input:focus,
.admin-field textarea:focus {
  border-color: var(--gold-divine);
}

.admin-field textarea {
  min-height: 100px;
  resize: vertical;
}

.admin-btn {
  padding: 10px 25px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-btn--gold {
  background: var(--gold-divine);
  color: var(--white-pure);
}

.admin-btn--gold:hover {
  background: var(--gold-dark);
}

.admin-btn--outline {
  background: transparent;
  border: 1.5px solid var(--charcoal-light);
  color: var(--charcoal);
}

.admin-btn--outline:hover {
  background: var(--charcoal);
  color: var(--white-pure);
}

.admin-btn--danger {
  background: #c0392b;
  color: var(--white-pure);
}

.admin-btn--danger:hover {
  background: #a93226;
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.admin-image-slot {
  width: 100%;
  height: 200px;
  border: 2px dashed var(--white-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-soft);
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.admin-image-slot:hover {
  border-color: var(--gold-divine);
}

.admin-image-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.admin-image-slot .placeholder-text {
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.admin-save-notice {
  padding: 12px 20px;
  background: #2ecc71;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  display: none;
  margin-bottom: 20px;
}

.admin-save-notice.show {
  display: block;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .times-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding: 0 1.5rem;
  }

  .nav-main {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .site-logo {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
  }

  .hero {
    height: 55vh;
    margin-top: 60px;
  }

  .welcome-banner {
    padding: 20px 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .card-grid {
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-search,
  .header-actions .btn-outline {
    display: none;
  }

  .door-logo {
    font-size: 1.5rem;
  }

  .intro-content h1 {
    letter-spacing: 0.15em;
  }

  /* Admin responsive */
  .admin-sidebar {
    transform: translateX(-100%);
    z-index: 100;
    transition: transform 0.3s;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-content {
    margin-left: 0;
    padding: 20px;
  }

  .admin-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Utility / Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Cross decoration */
.cross-ornament {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}

.cross-ornament::before,
.cross-ornament::after {
  content: '';
  position: absolute;
  background: var(--gold-divine);
}

.cross-ornament::before {
  top: 0; left: 50%;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}

.cross-ornament::after {
  top: 40%; left: 0;
  width: 100%; height: 2px;
}
