/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3560;
  --gold: #c49a2f;
  --gold-light: #e2bb5a;
  --cream: #faf7f1;
  --cream-dark: #f0ead8;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3d4460;
  --text-light: #7a8099;
  --border: rgba(196, 154, 47, 0.25);
  --shadow: 0 8px 40px rgba(13, 31, 60, 0.12);
  --shadow-gold: 0 4px 20px rgba(196, 154, 47, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img { 
  max-width: 100%; 
  height: auto;
  display: block; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

ul { 
  list-style: none; 
}

button { 
  cursor: pointer; 
  border: none; 
  background: none; 
  font-family: inherit; 
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(13,31,60,0.35);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex; 
  align-items: center; 
  gap: 0.75rem;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-logo {
  width: 44px; 
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-title {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; 
  font-weight: 600;
  line-height: 1.25;
}

.nav-title span { 
  color: var(--gold-light); 
  display: block; 
  font-size: 0.7rem; 
  font-family: 'Nunito', sans-serif; 
  font-weight: 400; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
}

.nav-links {
  display: flex; 
  align-items: center; 
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem; 
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(196,154,47,0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column; 
  gap: 5px;
  padding: 8px; 
  border-radius: 6px;
  transition: var(--transition);
}

.nav-toggle:hover { 
  background: rgba(255,255,255,0.1); 
}

.nav-toggle span {
  display: block; 
  width: 24px; 
  height: 2px;
  background: var(--white);
  border-radius: 2px; 
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}

.nav-toggle.open span:nth-child(2) { 
  opacity: 0; 
}

.nav-toggle.open span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
}

.nav-mobile {
  display: none;
  background: var(--navy-mid);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile a {
  display: block; 
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  font-weight: 600; 
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.nav-mobile a:last-child { 
  border-bottom: none; 
}

.nav-mobile a:hover, .nav-mobile a.active { 
  color: var(--gold-light); 
  padding-left: 0.5rem; 
}

/* ===== SECTION HELPERS ===== */
section { 
  padding: 5rem 1.5rem; 
}

.container { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.section-label {
  display: inline-block;
  font-size: 0.7rem; 
  font-weight: 700;
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,47,0.1);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem; 
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; 
  color: var(--navy);
  line-height: 1.2; 
  margin-bottom: 1rem;
}

.section-title.white { 
  color: var(--white); 
}

.section-subtitle {
  font-size: 1rem; 
  color: var(--text-mid);
  max-width: 580px; 
  line-height: 1.8;
}

.section-subtitle.white { 
  color: rgba(255,255,255,0.75); 
}

.divider {
  width: 60px; 
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px; 
  margin: 1.25rem 0;
}

.divider.center { 
  margin-left: auto; 
  margin-right: auto; 
}

.text-center { 
  text-align: center; 
}

.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  padding: 0.85rem 2rem; 
  border-radius: 50px;
  font-weight: 700; 
  font-size: 0.875rem;
  letter-spacing: 0.04em; 
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 30px rgba(196,154,47,0.35); 
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline:hover { 
  background: rgba(255,255,255,0.1); 
  border-color: var(--white); 
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-navy:hover { 
  background: var(--navy-mid); 
  transform: translateY(-2px); 
}

/* ===== CARDS & GRIDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 16px 50px rgba(13,31,60,0.15); 
}

.grid-2 { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
}

.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
}

.grid-4 { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 1.5rem; 
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative; 
  overflow: hidden;
  min-height: 100vh;
  display: flex; 
  align-items: center;
  background: var(--navy);
}

.hero-bg {
  position: absolute; 
  inset: 0; 
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(90deg, rgba(13,31,60,0.92) 40%, rgba(13,31,60,0.4) 100%);
}

.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 1100px; 
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  background: rgba(196,154,47,0.15);
  border: 1px solid rgba(196,154,47,0.35);
  color: var(--gold-light);
  padding: 0.4rem 1rem; 
  border-radius: 50px;
  font-size: 0.75rem; 
  font-weight: 700;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease 0.2s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700; 
  color: var(--white);
  line-height: 1.08; 
  margin-bottom: 1rem;
  animation: fadeIn 0.6s ease 0.35s both;
}

.hero-title em { 
  color: var(--gold-light); 
  font-style: italic; 
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px; 
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease 0.5s both;
}

.hero-actions {
  display: flex; 
  flex-wrap: wrap; 
  gap: 1rem;
  animation: fadeIn 0.6s ease 0.65s both;
}

.hero-scroll {
  position: absolute; 
  bottom: 2.5rem; 
  left: 50%; 
  transform: translateX(-50%);
  z-index: 2; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 0.5rem;
  color: rgba(255,255,255,0.5); 
  font-size: 0.7rem; 
  letter-spacing: 0.12em;
  text-transform: uppercase; 
  animation: bounce 2s infinite;
}

@keyframes fadeIn { 
  from { opacity: 0; transform: translateY(16px); } 
  to { opacity: 1; transform: translateY(0); } 
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== WELCOME STRIP ===== */
.welcome-strip {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.welcome-strip .container {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 4rem; 
  align-items: center;
}

.welcome-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy); 
  line-height: 1.2; 
  margin-bottom: 1rem;
}

.welcome-text p { 
  color: var(--text-mid); 
  line-height: 1.85; 
  margin-bottom: 1.25rem; 
}

.welcome-values {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-item {
  display: flex; 
  align-items: flex-start; 
  gap: 0.75rem;
  padding: 1rem; 
  background: var(--cream); 
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.value-icon {
  width: 36px; 
  height: 36px; 
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-item h4 { 
  font-size: 0.85rem; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 0.2rem; 
}

.value-item p { 
  font-size: 0.8rem; 
  color: var(--text-light); 
  line-height: 1.5; 
  margin: 0; 
}

.welcome-image {
  border-radius: var(--radius-lg); 
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ANNOUNCEMENTS ===== */
.announcements { 
  background: var(--cream); 
}

.announcements-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; 
  margin-top: 3rem;
}

.announcement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.announcement-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 16px 40px rgba(13,31,60,0.14); 
}

.ann-img { 
  height: 180px; 
  overflow: hidden;
}

.ann-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ann-body { 
  padding: 1.5rem; 
}

.ann-tag {
  display: inline-block; 
  font-size: 0.65rem; 
  font-weight: 700;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  color: var(--gold); 
  background: rgba(196,154,47,0.1);
  border: 1px solid var(--border); 
  padding: 0.25rem 0.7rem; 
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.ann-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; 
  font-weight: 600; 
  color: var(--navy);
  margin-bottom: 0.5rem; 
  line-height: 1.3;
}

.ann-body p { 
  font-size: 0.875rem; 
  color: var(--text-mid); 
  line-height: 1.7; 
}

.ann-date { 
  font-size: 0.75rem; 
  color: var(--text-light); 
  margin-top: 1rem; 
  display: flex; 
  align-items: center; 
  gap: 0.35rem; 
}

/* ===== SCRIPTURE BANNER ===== */
.scripture-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 1.5rem;
  text-align: center; 
  position: relative; 
  overflow: hidden;
}

.scripture-banner::before {
  content: '✝'; 
  position: absolute;
  font-size: 20rem; 
  color: rgba(255,255,255,0.03);
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  line-height: 1;
}

.scripture-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white); 
  font-style: italic; 
  font-weight: 400;
  max-width: 780px; 
  margin: 0 auto 1rem;
  line-height: 1.6; 
  position: relative; 
  z-index: 1;
}

.scripture-quote::before { 
  content: '\201C'; 
}

.scripture-quote::after { 
  content: '\201D'; 
}

.scripture-ref {
  color: var(--gold-light); 
  font-size: 0.875rem;
  font-weight: 600; 
  letter-spacing: 0.08em;
  position: relative; 
  z-index: 1;
}

/* ===== SERVICE TIMES ===== */
.service-times-strip {
  background: var(--white); 
  padding: 4rem 1.5rem;
}

.times-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; 
  margin-top: 2.5rem;
}

/* Time Card */
.time-card {
  text-align: center; 
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; 
  overflow: hidden;
}

.time-card::before {
  content: ''; 
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0; 
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); 
  transform-origin: left;
  transition: var(--transition);
}

.time-card:hover::before { 
  transform: scaleX(1); 
}

.time-card:hover { 
  border-color: var(--border); 
  box-shadow: var(--shadow-gold); 
}

/* Time Icon Circle */
.time-icon {
  width: 60px; 
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%; 
  margin: 0 auto 1.25rem;
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
}

.time-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Headings and Time */
.time-card h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.3rem; 
  color: var(--navy); 
  margin-bottom: 0.35rem; 
}

.time-card .time { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--gold); 
  margin-bottom: 0.25rem; 
}

/* ===== LOCATION ICON WITH TEXT ===== */
.time-card .location {
  display: flex;            /* Horizontal alignment */
  align-items: center;      /* Vertical alignment */
  justify-content: center;  /* Center inside card */
  gap: 6px;                 /* Space between icon and text */
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0 auto;
}

.time-card .location img {
  width: 25px;             /* Adjust icon size */
  height: auto;            /* Keep aspect ratio */
  display: inline-block;   /* Ensure it doesn't break line */
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 6rem 1.5rem 5rem;
  text-align: center; 
  position: relative; 
  overflow: hidden;
}

.about-hero::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,154,47,0.1) 0%, transparent 60%);
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); 
  font-weight: 700;
  position: relative; 
  z-index: 1;
}

.about-hero p {
  color: rgba(255,255,255,0.7); 
  font-size: 1.05rem;
  max-width: 500px; 
  margin: 1rem auto 0; 
  position: relative; 
  z-index: 1;
}

.page-breadcrumb {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.5rem;
  margin-top: 1.5rem; 
  position: relative; 
  z-index: 1;
}

.page-breadcrumb span { 
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.5); 
}

.page-breadcrumb a { 
  font-size: 0.8rem; 
  color: var(--gold-light); 
  cursor: pointer; 
}

.page-breadcrumb a:hover { 
  text-decoration: underline; 
}

.about-story {
  background: var(--white); 
  padding: 5rem 1.5rem;
}

.about-story .container {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 4rem; 
  align-items: center;
}

.about-story-image {
  height: 420px; 
  border-radius: var(--radius-lg); 
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text p { 
  color: var(--text-mid); 
  line-height: 1.85; 
  margin-bottom: 1rem; 
}

.vision-mission { 
  background: var(--cream); 
  padding: 5rem 1.5rem; 
}

.vm-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 2rem; 
  margin-top: 3rem;
}

.vm-card {
  background: var(--white); 
  border-radius: var(--radius-lg);
  padding: 2.5rem; 
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; 
  color: var(--navy); 
  margin-bottom: 1rem;
  display: flex; 
  align-items: center; 
  gap: 0.75rem;
}

.vm-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.vm-card p { 
  color: var(--text-mid); 
  line-height: 1.8; 
}

.vm-card ul { 
  margin-top: 1rem; 
}

.vm-card ul li {
  display: flex; 
  align-items: flex-start; 
  gap: 0.65rem;
  color: var(--text-mid); 
  margin-bottom: 0.65rem; 
  font-size: 0.95rem;
}

.vm-card ul li::before {
  content: '✦'; 
  color: var(--gold); 
  flex-shrink: 0;
  margin-top: 0.2rem; 
  font-size: 0.7rem;
}

.leadership { 
  background: var(--white); 
  padding: 5rem 1.5rem; 
}

.leadership-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; 
  margin-top: 3rem;
}

.leader-card {
  text-align: center;
  background: var(--cream); 
  border-radius: var(--radius-lg);
  padding: 2rem; 
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(13,31,60,0.06);
}

.leader-card:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow); 
}

.leader-photo {
  width: 120px; 
  height: 120px;
  border-radius: 50%; 
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(13,31,60,0.15);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.2rem; 
  color: var(--navy); 
}

.leader-card .role { 
  font-size: 0.8rem; 
  color: var(--gold); 
  font-weight: 700; 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  margin: 0.25rem 0 0.75rem; 
}

.leader-card p { 
  font-size: 0.85rem; 
  color: var(--text-mid); 
  line-height: 1.65; 
}

/* ===== SERVICES PAGE ===== */
.services-list { 
  background: var(--white); 
  padding: 5rem 1.5rem; 
}

.service-block {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 3rem; 
  align-items: center;
  padding: 3rem; 
  background: var(--cream);
  border-radius: var(--radius-lg); 
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(13,31,60,0.05);
  transition: var(--transition);
}

.service-block:hover { 
  box-shadow: var(--shadow); 
}

.service-block.reverse { 
  direction: rtl; 
}

.service-block.reverse > * { 
  direction: ltr; 
}

.service-block-img {
  height: 260px; 
  border-radius: var(--radius); 
  overflow: hidden;
}

.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block-text .ann-tag { 
  margin-bottom: 1rem; 
}

.service-block-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; 
  color: var(--navy); 
  margin-bottom: 0.75rem;
}

.service-block-text p { 
  color: var(--text-mid); 
  line-height: 1.8; 
  margin-bottom: 1.25rem; 
}

.service-meta {
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.75rem; 
  margin-top: 1rem;
}

.meta-pill {
  display: flex; 
  align-items: center; 
  gap: 0.4rem;
  background: var(--white); 
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; 
  border-radius: 50px;
  font-size: 0.8rem; 
  color: var(--text-mid); 
  font-weight: 600;
}

.schedule-table-section { 
  background: var(--cream); 
  padding: 5rem 1.5rem; 
}

.schedule-table {
  width: 100%; 
  border-collapse: collapse;
  background: var(--white); 
  border-radius: var(--radius-lg);
  overflow: hidden; 
  box-shadow: var(--shadow);
  margin-top: 2.5rem;
}

.schedule-table th {
  background: var(--navy); 
  color: var(--white);
  padding: 1.1rem 1.5rem; 
  text-align: left;
  font-size: 0.8rem; 
  letter-spacing: 0.08em; 
  text-transform: uppercase;
  font-weight: 700;
}

.schedule-table td {
  padding: 1.1rem 1.5rem; 
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem; 
  color: var(--text-mid);
}

.schedule-table tr:last-child td { 
  border-bottom: none; 
}

.schedule-table tr:hover td { 
  background: var(--cream); 
}

.schedule-table td:first-child { 
  font-weight: 700; 
  color: var(--navy); 
}

.badge-gold {
  display: inline-block; 
  background: rgba(196,154,47,0.12);
  color: var(--gold); 
  border: 1px solid var(--border);
  padding: 0.2rem 0.7rem; 
  border-radius: 50px;
  font-size: 0.75rem; 
  font-weight: 700;
}

/* ===== EVENTS PAGE ===== */
.events-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; 
  margin-top: 3rem;
}

.event-card {
  background: var(--white); 
  border-radius: var(--radius-lg);
  overflow: hidden; 
  box-shadow: var(--shadow); 
  transition: var(--transition);
}

.event-card:hover { 
  transform: translateY(-5px); 
}

.event-img { 
  height: 200px; 
  position: relative; 
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute; 
  top: 1rem; 
  left: 1rem;
  background: var(--navy); 
  color: var(--white);
  border-radius: var(--radius); 
  padding: 0.5rem 0.9rem;
  text-align: center; 
  z-index: 2;
}

.event-date-badge .day { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.8rem; 
  font-weight: 700; 
  line-height: 1; 
}

.event-date-badge .month { 
  font-size: 0.65rem; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--gold-light); 
}

.event-body { 
  padding: 1.5rem; 
}

.event-body h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.25rem; 
  color: var(--navy); 
  margin-bottom: 0.5rem; 
}

.event-body p { 
  font-size: 0.85rem; 
  color: var(--text-mid); 
  line-height: 1.65; 
}

.event-info { 
  margin-top: 1rem; 
  display: flex; 
  flex-direction: column; 
  gap: 0.35rem; 
}

.event-info span { 
  font-size: 0.8rem; 
  color: var(--text-light); 
  display: flex; 
  align-items: center; 
  gap: 0.4rem; 
}

.coming-soon-badge {
  display: inline-block; 
  background: rgba(196,154,47,0.1);
  color: var(--gold); 
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem; 
  border-radius: 50px;
  font-size: 0.72rem; 
  font-weight: 700; 
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== MEDIA PAGE ===== */
.media-section { 
  background: var(--white); 
  padding: 5rem 1.5rem; 
}

.sermon-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; 
  margin-top: 3rem;
}

.sermon-card {
  background: var(--cream); 
  border-radius: var(--radius-lg);
  overflow: hidden; 
  box-shadow: 0 4px 20px rgba(13,31,60,0.07);
  transition: var(--transition);
}

.sermon-card:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow); 
}

.sermon-thumb {
  height: 170px; 
  position: relative;
  overflow: hidden;
}

.sermon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%,-50%);
  width: 56px; 
  height: 56px; 
  background: rgba(196,154,47,0.9);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.2rem; 
  color: var(--navy); 
  z-index: 2;
  transition: var(--transition);
  cursor: pointer;
}

.sermon-card:hover .play-btn { 
  background: var(--gold); 
  transform: translate(-50%,-50%) scale(1.1); 
}

.sermon-body { 
  padding: 1.25rem; 
}

.sermon-body h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.15rem; 
  color: var(--navy); 
  margin-bottom: 0.4rem; 
}

.sermon-body .preacher { 
  font-size: 0.8rem; 
  color: var(--gold); 
  font-weight: 700; 
}

.sermon-body .sermon-date { 
  font-size: 0.75rem; 
  color: var(--text-light); 
  margin-top: 0.5rem; 
}

.cs-large {
  text-align: center; 
  padding: 4rem 2rem;
  background: var(--cream); 
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border); 
  margin-top: 3rem;
}

.cs-icon-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.cs-large h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2rem; 
  color: var(--navy); 
  margin-bottom: 0.75rem; 
}

.cs-large p { 
  color: var(--text-mid); 
  max-width: 400px; 
  margin: 0 auto; 
  font-size: 0.95rem; 
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid; 
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem; 
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; 
  color: var(--navy); 
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex; 
  align-items: flex-start; 
  gap: 1rem;
  margin-bottom: 1.5rem; 
  padding: 1.25rem;
  background: var(--cream); 
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.contact-icon {
  width: 42px; 
  height: 42px; 
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px; 
  display: flex; 
  align-items: center;
  justify-content: center; 
  overflow: hidden;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-item h4 { 
  font-size: 0.8rem; 
  font-weight: 700; 
  color: var(--navy); 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  margin-bottom: 0.3rem; 
}

.contact-item p { 
  font-size: 0.875rem; 
  color: var(--text-mid); 
  line-height: 1.6; 
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-form-card {
  background: var(--white); 
  border-radius: var(--radius-lg);
  padding: 2.5rem; 
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; 
  color: var(--navy); 
  margin-bottom: 1.75rem;
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
  margin-bottom: 1rem; 
}

.form-group { 
  margin-bottom: 1rem; 
}

.form-group label {
  display: block; 
  font-size: 0.8rem; 
  font-weight: 700;
  color: var(--navy); 
  letter-spacing: 0.05em;
  text-transform: uppercase; 
  margin-bottom: 0.45rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%; 
  padding: 0.85rem 1rem;
  border: 2px solid rgba(13,31,60,0.1);
  border-radius: var(--radius); 
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; 
  color: var(--text-dark);
  background: var(--cream); 
  transition: var(--transition);
  outline: none;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--gold); 
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,154,47,0.12);
}

.form-group textarea { 
  resize: vertical; 
  min-height: 130px; 
}

.form-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); 
  padding: 1rem 2rem;
  border-radius: 50px; 
  font-weight: 700; 
  font-size: 0.9rem;
  width: 100%; 
  transition: var(--transition); 
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
}

.form-submit:hover { 
  background: linear-gradient(135deg, var(--navy-mid), var(--navy)); 
  box-shadow: var(--shadow); 
  transform: translateY(-2px); 
}

.form-success {
  display: none; 
  text-align: center; 
  padding: 2rem;
  background: rgba(34,197,94,0.08); 
  border-radius: var(--radius);
  border: 1px solid rgba(34,197,94,0.2); 
  margin-top: 1rem;
}

.form-success h4 { 
  color: #15803d; 
  font-size: 1.1rem; 
  margin-bottom: 0.5rem; 
}

.form-success p { 
  font-size: 0.875rem; 
  color: var(--text-mid); 
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1100px; 
  margin: 0 auto;
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; 
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { 
  width: 60px;
  height: 60px;
  margin-bottom: 1rem; 
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; 
  color: var(--white); 
  font-weight: 600; 
  margin-bottom: 0.5rem;
}

.footer-brand p { 
  font-size: 0.85rem; 
  line-height: 1.75; 
  margin-bottom: 1.5rem; 
}

/* SOCIAL ICONS */
.social-links { 
  display: flex; 
  gap: 0.75rem; 
}

.social-link {
  width: 38px; 
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1rem; 
  color: rgba(255,255,255,0.7);
  transition: var(--transition); 
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover { 
  background: var(--gold); 
  color: var(--navy); 
  border-color: var(--gold); 
}

/* COLUMN TITLES */
.footer-col h4{
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.14em;
  text-transform: uppercase; 
  color: var(--gold-light); 
  margin-bottom: 1.25rem;
}

/* LINKS */
.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
 margin-bottom: 0.65rem;
}

.footer-col ul li a{
  font-size: 0.875rem; 
  color: rgba(255,255,255,0.6);
  transition: var(--transition); 
  cursor: pointer;
}

.footer-col ul li a:hover{
  color: var(--gold-light); 
  padding-left: 4px; 
}
.footer-col p { 
  font-size: 0.85rem; 
  line-height: 1.8; 
}

/* CONTACT */
.footer-contact{
  display:flex;
  align-items:flex-start;
  gap:6px;
  margin-bottom:15px;
}

.footer-contact img{
  width:15px;
  margin-top:6px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom{
 max-width: 1100px; 
  margin: 2rem auto 0;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  font-size: 0.8rem; 
  color: rgba(255,255,255,0.4); 
  flex-wrap: wrap; 
  gap: 1rem;
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
  }
  .nav-toggle { 
    display: flex; 
  }
  section { 
    padding: 3.5rem 1.25rem; 
  }
  .grid-2, 
  .grid-3, 
  .grid-4 { 
    grid-template-columns: 1fr; 
  }
  .welcome-strip .container { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .about-story .container { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .vm-grid { 
    grid-template-columns: 1fr; 
  }
  .contact-layout { 
    grid-template-columns: 1fr; 
  }
  .form-row { 
    grid-template-columns: 1fr; 
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .footer-brand { 
    grid-column: auto; 
  }
  .announcements-grid, 
  .times-grid { 
    grid-template-columns: 1fr; 
  }
  .leadership-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .events-grid, 
  .sermon-grid { 
    grid-template-columns: 1fr; 
  }
  .service-block { 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
  }
  .service-block.reverse { 
    direction: ltr; 
  }
  .hero-title { 
    font-size: 2.5rem; 
  }
  .schedule-table { 
    font-size: 0.82rem; 
  }
  .schedule-table th, 
  .schedule-table td { 
    padding: 0.85rem 1rem; 
  }
  .footer-bottom { 
    justify-content: center; 
    text-align: center; 
  }
}

@media (max-width: 480px) {
  .hero-title { 
    font-size: 2rem; 
  }
  .hero-actions { 
    flex-direction: column; 
  }
  .hero-actions .btn { 
    justify-content: center; 
  }
  .leadership-grid { 
    grid-template-columns: 1fr; 
  }
  .welcome-values { 
    grid-template-columns: 1fr; 
  }
}