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

:root {
  --maroon:   #2c3e6b;
  --maroon-dk:#1e2d52;
  --gold:     #e8871a;
  --gold-lt:  #fdebd0;
  --bg:       #f8f9fc;
  --bg-alt:   #eef0f7;
  --text:     #0d1220;
  --text-mid: #2d3a5a;
  --text-lt:  #5a6680;
  --radius:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ── Utilities ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.centered { text-align: center; }

/* ── Header ── */
header {
  background: var(--maroon);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.logo-sub {
  font-family: 'Noto Serif', serif;
  font-size: 0.75rem;
  color: var(--gold-lt);
  letter-spacing: 0.18em;
  text-transform: none;
}

.logo-city {
  display: block;
  font-size: 0.85em;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.nav-inline {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.nav-inline a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-inline a:hover { color: var(--gold-lt); }
.nav-inline a.nav-active { color: var(--gold-lt) !important; }

nav {
  display: flex;
  gap: 1.75rem;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

/* ── Desktop language switcher ── */
.desktop-lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
}

.desktop-lang-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
}

@media (max-width: 700px) {
  .desktop-lang { display: none; }
}

/* ── Drawer bottom (lang + socials) ── */
.drawer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.drawer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-lang-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.lang-btn:hover { color: rgba(255,255,255,0.85); }
.lang-btn.lang-active { color: var(--gold); }

/* ── Button ── */
.btn {
  display: inline-block;
  background: rgba(232, 135, 26, 0.75);
  color: var(--maroon-dk);
  font-family: 'Noto Serif', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.35rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #f09a35;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
  padding: 7rem 1.5rem 6rem;
  text-align: center;
  color: #fff;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

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

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.hero-marquee-wrap {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-marquee-wrap--top { top: 0; }
.hero-marquee-wrap--bottom { bottom: 0; }

.hero-tag {
  margin: 0;
  white-space: nowrap;
}

.hero-marquee-inner {
  display: inline-block;
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  animation: marqueeScroll 360s linear infinite;
}

.hero-marquee-wrap--bottom .hero-marquee-inner {
  animation: marqueeScroll 360s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.hero h1 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label.centered {
  text-align: center;
}

.section-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.section-body-text {
  flex: 1;
}

#about {
  background-image: url('disciples.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

#about .container {
  position: relative;
}

.section-body-text h2,
.section > .container > h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-body-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-style: italic;
  color: var(--text-lt);
  font-size: 1rem;
  line-height: 1.65;
}

/* ── Cards ── */
.section > .container > h2.centered {
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid #e0d8cc;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 107, 0.1);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-lt);
  line-height: 1.6;
}

.card a,
.section-body-text a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.card a:hover,
.section-body-text a:hover { opacity: 0.8; }

.resource-links {
  margin: 0.5rem 0 0 1.1rem;
  padding: 0;
}

.resource-links li { margin-bottom: 0.3rem; }

.resource-links a {
  color: var(--maroon);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
  font-size: 0.95rem;
}

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

/* ── Contact ── */
.contact-intro {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--maroon);
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 2rem;
  height: 2rem;
}

.contact-link {
  display: inline-block;
  color: var(--maroon);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

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

/* ── Inner pages ── */
.nav-active { color: var(--gold-lt) !important; }

.page-hero {
  background: var(--maroon);
  padding: 4rem 1.5rem 3rem;
  color: #fff;
}


.page-hero--about {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('about us.jpg');
  background-size: cover;
  background-position: center 60%;
  padding: 6rem 1.5rem 5rem;
}

.page-hero .hero-tag {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.program-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid #e0d8cc;
}

.program-item:last-child { border-bottom: none; }

.program-icon {
  font-size: 1.75rem;
  color: var(--maroon);
  padding-top: 0.2rem;
}

.program-body h2 {
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 0.6rem;
}

.program-body p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

.about-content {
  max-width: 760px;
}

.about-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e0d8cc;
}

.about-block:last-child { border-bottom: none; }

.about-block h2 {
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.about-block p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.about-block p:last-child { margin-bottom: 0; }

.about-block a {
  color: var(--maroon);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.about-block a:hover { color: var(--gold); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 1.25rem;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mission-list, .activity-list {
  margin: 0.5rem 0 0.9rem 1.4rem;
  padding: 0;
}

.mission-list li, .activity-list li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.contact-detail {
  max-width: 560px;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-link-lg {
  font-size: 1.25rem;
}

@media (max-width: 700px) {
  .program-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .program-icon { font-size: 1.4rem; }
}

/* ── Schedule ── */
.sched-intro {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.sched-intro a {
  color: var(--maroon);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.sched-intro a:hover { color: var(--gold); }

.sched-category {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.5rem 0 0;
}

.sched-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #d0c8bc;
}

.sched-item:last-child { border-bottom: none; }

.sched-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}

.sched-lang {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-lt);
}

.sched-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.75rem;
  margin-bottom: 0.6rem;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.875rem;
  color: var(--text-lt);
}

.sched-details a {
  color: var(--maroon);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.sched-details a:hover { color: var(--gold); }

.sched-desc {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  background: var(--maroon-dk);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.9;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.footer-name {
  color: var(--gold-lt);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-family: 'Noto Serif', Georgia, serif;
}

/* ── Desktop nav ── */
.nav-desktop {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

/* ── Mobile nav (hamburger + drawer) ── */
.nav-inline { display: none; }

.nav-drawer {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 82vw);
  height: 100vh;
  background: var(--maroon-dk);
  z-index: 600;
  padding: 4.5rem 2rem 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.35);
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.drawer-socials {
  display: flex;
  gap: 1.25rem;
}
.drawer-socials a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  line-height: 0;
}
.drawer-socials a:hover { color: var(--gold); }
.drawer-socials svg { width: 1.35rem; height: 1.35rem; }

.nav-close {
  display: block;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-close {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 50;
}

.nav-overlay.open { display: block; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .nav-desktop { display: none; }
  .nav-inline { display: flex; margin-left: auto; }
  .nav-toggle { display: flex; }

  nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  nav a {
    font-size: 1.05rem;
    padding: 0.2rem 0;
  }

  .section-grid { grid-template-columns: 1fr; gap: 0.5rem 0; }
  .section-label { margin-bottom: 0.4rem; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
