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

:root {
  --navy: #0f1d3d;
  --navy-light: #1a2d5a;
  --navy-soft: #2a3f6e;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray-light: #e8ecf4;
  --gray: #8892a8;
  --text: #1e293b;
  --text-light: #64748b;
  --accent: #3b6cf5;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 29, 61, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 29, 61, 0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

/* Language Toggle — always visible, even on mobile */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
  border: 1px solid var(--gray-light);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(15, 29, 61, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav right side: lang toggle + hamburger together on mobile */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Hero Slider ──────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  min-height: 100vh;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Default slide (no image) — navy gradient */
.hero-slide--default {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-soft) 100%);
}

.hero-slide--default::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 108, 245, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-slide--default::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* Event slide (with image) */
.hero-slide--event {
  background-size: cover;
  background-position: center;
}

.hero-slide--event .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 120px 40px 80px;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
}

/* Logo in nav */
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer .nav-logo img {
  height: 60px;
}

/* Slider Navigation */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--white);
  border-color: var(--white);
}

.slider-dot:hover {
  border-color: var(--white);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 20;
  pointer-events: none;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(15, 29, 61, 0.4);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: rgba(15, 29, 61, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Event badge on slides */
.hero-event-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

/* Progress bar for auto-slide */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 20;
  transition: width linear;
}

@media (max-width: 768px) {
  .slider-arrows { display: none; }
  .slider-dots { bottom: 20px; }
  .slider-dot { width: 10px; height: 10px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-content p { font-size: 1rem; }
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero h1,
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p,
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

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

.about-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}

.stat h3 {
  font-size: 2rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.stat p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* ── Services Schedule ──────────────────────────── */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--off-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.service-card .time {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Verse / Quote ─────────────────────────────── */
.verse-section {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  padding: 80px 0;
}

.verse-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
}

.verse-section cite {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-style: normal;
}

/* ── Events ────────────────────────────────────── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 32px;
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.event-date {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.event-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-light);
}

.event-info h3 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.event-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Contact ───────────────────────────────────── */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.map-placeholder {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer ────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer ul { display: flex; flex-direction: column; gap: 12px; }

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--gray-light);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hamburger { display: flex; }

  /* Language toggle stays visible next to hamburger on mobile */
  .nav-right .lang-toggle {
    display: flex;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero { min-height: 90vh; }
  .hero-slider { height: 100vh; }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .event-divider {
    width: 48px;
    height: 1px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-stats { gap: 24px; }
}

/* ── Animations ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Page Header (for inner pages) ─────────────── */
.page-header {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Event Detail Styles ───────────────────────── */
.event-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
}

.event-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  width: 100%;
}

.event-detail-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.event-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.event-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ── Photo Gallery ─────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.photo-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 16px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  display: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: none;
}

/* ── Event Detail — Enhanced Sections ─────────── */
.event-description {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
}

/* Presenters */
.event-presenters {
  margin-bottom: 28px;
}

.event-presenters h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.presenters-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.presenter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* Highlights */
.event-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.event-highlight-chip {
  padding: 6px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-highlight-chip.accent {
  background: rgba(59, 108, 245, 0.08);
  border-color: rgba(59, 108, 245, 0.2);
  color: var(--accent);
}

/* Verse */
.event-verse {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.event-verse .verse-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}

.event-verse .verse-ref {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Schedule Timeline */
.event-schedule-section {
  margin-top: 40px;
}

.event-schedule-section > h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-item {
  display: grid;
  grid-template-columns: 90px 48px 1fr;
  gap: 0;
  min-height: 80px;
}

.schedule-time {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  padding-top: 12px;
  text-align: right;
  padding-right: 16px;
}

.schedule-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.schedule-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}

.schedule-item:hover .schedule-dot {
  border-color: var(--accent);
  background: rgba(59, 108, 245, 0.08);
  color: var(--accent);
}

.schedule-connector {
  width: 2px;
  flex: 1;
  background: var(--gray-light);
  min-height: 20px;
}

.schedule-content {
  padding: 8px 0 28px 16px;
}

.schedule-content h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.schedule-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Topics */
.event-topics-section {
  margin-top: 36px;
}

.event-topics-section > h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.topics-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.topics-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.topic-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.7rem;
}

/* Registration CTA */
.event-cta {
  margin-top: 40px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

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

.btn-cta-register {
  background: var(--white);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Flyers */
.event-flyers-section {
  margin-top: 40px;
}

.event-flyers-section > h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.flyers-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.flyer-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.flyer-preview:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.flyer-preview img {
  width: 100%;
  display: block;
}

.flyer-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 29, 61, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Contact */
.event-contact {
  margin-top: 32px;
  text-align: center;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}

.event-contact p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-phone {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

.contact-phone:hover {
  color: var(--accent);
}

/* Event Photos Section */
.event-photos-section {
  margin-top: 40px;
}

.event-photos-section > h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
}

/* Responsive adjustments for event detail */
@media (max-width: 768px) {
  .schedule-item {
    grid-template-columns: 70px 40px 1fr;
  }

  .schedule-time {
    font-size: 0.75rem;
    padding-right: 8px;
  }

  .schedule-dot {
    width: 36px;
    height: 36px;
  }

  .schedule-dot svg {
    width: 18px;
    height: 18px;
  }

  .schedule-content {
    padding-left: 10px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .flyers-row {
    grid-template-columns: 1fr;
  }
}
