/* ============================================
   THE KINGDOM ADVANCEMENT
   Dark Theme + Individual Rainbow Accents
   ============================================ */

/* --- Colors --- */
:root {
  --red: #E53935;
  --orange: #FB8C00;
  --yellow: #F9A825;
  --green: #43A047;
  --blue: #1E88E5;
  --indigo: #5C6BC0;
  --violet: #8E24AA;

  --bg-primary: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --bg-surface: #111;
  --border-subtle: rgba(255,255,255,0.08);

  --text-white: #ffffff;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.5);
  --text-faint: rgba(255,255,255,0.3);

  --font-heading: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s, opacity 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Navigation --- */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
}
.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--text-muted);
  margin-top: 0px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a.active { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(10,10,10,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--red); }
.hero-scripture {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-scripture cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--yellow);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 44px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-solid {
  background: var(--orange);
  color: var(--bg-primary);
}
.btn-solid:hover {
  background: #e09500;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251,140,0,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-muted);
}
.btn-ghost:hover {
  border-color: var(--text-white);
  background: rgba(255,255,255,0.05);
}
.btn-color-red { background: var(--red); color: white; }
.btn-color-red:hover { background: #c62828; transform: translateY(-2px); }
.btn-color-green { background: var(--green); color: white; }
.btn-color-green:hover { background: #2e7d32; transform: translateY(-2px); }
.btn-color-blue { background: var(--blue); color: white; }
.btn-color-blue:hover { background: #1565c0; transform: translateY(-2px); }
.btn-color-violet { background: var(--violet); color: white; }
.btn-color-violet:hover { background: #6a1b9a; transform: translateY(-2px); }

.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Sections --- */
section { padding: 120px 0; }
.section-dark { background: var(--bg-surface); }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.label-red { color: var(--red); }
.label-orange { color: var(--orange); }
.label-yellow { color: var(--yellow); }
.label-green { color: var(--green); }
.label-blue { color: var(--blue); }
.label-indigo { color: var(--indigo); }
.label-violet { color: var(--violet); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Scripture Banner --- */
.scripture-banner {
  padding: 64px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.scripture-banner blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
  padding: 0 24px;
}
.scripture-banner cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  margin-top: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cite-red { color: var(--red); }
.cite-orange { color: var(--orange); }
.cite-yellow { color: var(--yellow); }
.cite-green { color: var(--green); }
.cite-blue { color: var(--blue); }
.cite-violet { color: var(--violet); }

/* --- Two Column / Bio --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-img { position: relative; }
.two-col-img img { border-radius: 4px; }
.two-col-img .accent-border {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid;
  border-radius: 4px;
  z-index: -1;
}
.two-col-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-white);
  line-height: 1.15;
}
.two-col-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* --- Vision Cards --- */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 40px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.vision-card:hover {
  transform: translateY(-4px);
}
.vision-card:nth-child(1)::before { background: var(--red); }
.vision-card:nth-child(1):hover { border-color: var(--red); }
.vision-card:nth-child(2)::before { background: var(--orange); }
.vision-card:nth-child(2):hover { border-color: var(--orange); }
.vision-card:nth-child(3)::before { background: var(--green); }
.vision-card:nth-child(3):hover { border-color: var(--green); }
.vision-card:nth-child(4)::before { background: var(--blue); }
.vision-card:nth-child(4):hover { border-color: var(--blue); }

.vision-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--text-white);
}
.vision-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- Statements / Simple Terms --- */
.statement-list {
  max-width: 700px;
  margin: 48px auto 0;
}
.statement-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.statement-item:last-child { border-bottom: none; }
.statement-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.statement-item p {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Role / Mandate Cards --- */
.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.role-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid;
  transition: border-color 0.3s, transform 0.3s;
}
.role-card:hover { transform: translateY(-2px); }
.role-card:nth-child(1) { border-left-color: var(--red); }
.role-card:nth-child(2) { border-left-color: var(--orange); }
.role-card:nth-child(3) { border-left-color: var(--yellow); }
.role-card:nth-child(4) { border-left-color: var(--green); }
.role-card:nth-child(5) { border-left-color: var(--blue); }
.role-card:nth-child(6) { border-left-color: var(--indigo); }
.role-card:nth-child(7) { border-left-color: var(--violet); }

.role-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--text-white);
}
.role-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.video-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 20px 24px; }
.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-white);
  margin-bottom: 4px;
}
.video-info p { font-size: 0.85rem; color: var(--text-muted); }

/* --- Events --- */
.events-list { margin-top: 56px; }
.event-item {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: flex-start;
}
.event-item:first-child { padding-top: 0; }
.event-date {
  text-align: center;
  min-width: 100px;
  flex-shrink: 0;
}
.event-date .month {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.event-date .day {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.event-date .year { font-size: 0.85rem; color: var(--text-muted); }
.event-details h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-white);
  margin-bottom: 8px;
}
.event-details p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.event-meta {
  font-size: 0.85rem;
  color: var(--text-faint);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.badge-red { background: var(--red); color: white; }
.badge-orange { background: var(--orange); color: var(--bg-primary); }
.badge-green { background: var(--green); color: white; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}
.contact-detail a { color: var(--text-light); font-weight: 500; }
.contact-detail a:hover { color: var(--orange); }
.contact-detail .label-sm {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.social-links { display: flex; gap: 12px; margin-top: 36px; }
.social-links a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.social-links a:hover {
  color: var(--text-white);
  border-color: var(--text-white);
}

.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-white);
  transition: border-color 0.3s;
  margin-bottom: 20px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form select option { background: var(--bg-card); color: var(--text-white); }

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border-subtle);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* --- Footer --- */
footer {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 360px; }
footer h4 {
  color: var(--text-white);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text-white); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--text-faint); }
.footer-socials a:hover { color: var(--text-white); }

/* --- Subscribe --- */
.subscribe-banner {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.subscribe-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 8px;
}
.subscribe-banner p { color: var(--text-muted); margin-bottom: 24px; }

/* --- Convictions --- */
.convictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.conviction-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.conviction-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- 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); }

/* --- Responsive --- */
@media (max-width: 968px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .event-item { flex-direction: column; gap: 16px; }
}
@media (max-width: 768px) {
  .role-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 80px 0; }
  .hero { min-height: 90vh; }
  .vision-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
