/* =========================
   ROOT VARIABLES
   ========================= */
:root {
  --midnight-blue: #0E1A2B;
  --warm-gold: #C9A24D;
  --soft-ivory: #F6F3ED;
  --slate-blue: #5F6F85;
}

/* =========================
   GLOBAL STYLES
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--midnight-blue);
  color: var(--soft-ivory);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 10;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--soft-ivory);
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--soft-ivory);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.4rem 1rem;
  border: 1px solid var(--warm-gold);
  border-radius: 20px;
  color: var(--warm-gold);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--warm-gold);
  color: var(--midnight-blue);
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url('/assets/imgs/backgrounds/herobg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 43, 0.75);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--warm-gold);
  letter-spacing: 1px;
  font-size: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-top: 0.5rem;
  line-height:1.05;

}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 1rem 0;
  color: var(--warm-gold);
}

.hero-description {
  max-width: 600px;
  margin: 1.5rem auto;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--slate-blue);
}

/* =========================
   BUTTONS
   ========================= */
.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--warm-gold);
  color: var(--midnight-blue);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary:focus {
  outline: 2px solid var(--warm-gold);
  outline-offset: 2px;
}

/* =========================
   SECTIONS
   ========================= */
section {
  padding: 4rem 1.5rem;
}

section + section {
  margin-top: 2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.section-title-gold {
  color: var(--warm-gold);
}

/* =========================
   STEPS SECTION
   ========================= */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background-color: #121F34;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
}

.step-card h4 {
  margin-bottom: 0.5rem;
  color: var(--warm-gold);
  font-family: 'Playfair Display', serif;
}

/* =========================
   SCRIPTURE SECTION
   ========================= */
.scripture {
  background-color: #121F34;
  text-align: center;
}

.scripture-quote {
  max-width: 700px;
  margin: 0 auto;
  border-left: 3px solid var(--warm-gold);
  padding-left: 1rem;
}

.scripture-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--slate-blue);
}

/* =========================
   FULL HEIGHT UTILITY
   ========================= */
.full-height {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* =========================
   REGISTRATION FORM
   ========================= */
.registration-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registration-form input,
.registration-form textarea {
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  width: 100%;
  resize: vertical;
}

.registration-form input:focus,
.registration-form textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--slate-blue);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-blue);
}

/* =========================
   SPLIT SECTION
   ========================= */
.split-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 0;
}

.split-image {
  flex: 1;
  position: relative;
}

.split-image img {
  width: 100%;
  height: calc(100% + 6rem);
  object-fit: cover;
  object-position: center;
  margin-top: -3rem;
  margin-bottom: -3rem;
  border-radius: 6px;
}

.split-content {
  flex: 1;
  padding: 3rem 2rem;
  text-align: left;
  color: var(--soft-ivory);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content .section-title {
  text-align: left;
}

/* =========================
   HORIZONTAL SCROLL SECTION
   ========================= */
.horizontal-scroll {
  position: relative;
  height: 70vh; /* shorter height */
  overflow: hidden;
  background-color: var(--midnight-blue);
}

.horizontal-track {
  position: relative;
  display: flex;
  height: 100%;
  width: max-content;
  z-index: 1;
}

.scroll-panel {
  min-width: 100vw;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.scroll-panel-wide {
  flex-direction: column;
}

.scroll-question {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--soft-ivory);
  max-width: 600px;
}

.scroll-description {
  max-width: 650px;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--soft-ivory);
}

.scroll-clarity {
  font-size: 1rem;
  color: var(--soft-ivory);
}

/* Horizontal scroll background */
.scroll-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200%;
  background: rgba(14, 26, 43, 0.75);
  background-image: url('/assets/imgs/content/longbg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 0;
}

.scroll-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(14, 26, 43, 0.75);
  z-index: 1;
  pointer-events: none;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .nav-links li:not(:last-child) {
    display: none;
  }

  .split-section {
    flex-direction: column;
  }

  .split-image img {
    height: auto;
    width: 90%;
    margin: -2rem 0;
  }

  .split-content {
    padding: 2rem 1rem;
    text-align: center;
  }

  .split-content .section-title {
    text-align: center;
  }
}




/* =========================
   FAQ SECTION
   ========================= */
.faq {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* Two columns on larger screens */
@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.faq-item {
  background-color: #121F34;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  align-self: start;
}

/* Remove default marker */
.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--soft-ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Gold indicator */
.faq-question::after {
  content: "+";
  color: var(--warm-gold);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-blue);
  line-height: 1.6;
}






.video-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* 1 per row mobile */
.video-grid {
  grid-template-columns: 1fr;
}

/* Maintain 16:9 ratio */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}

/* 2 per row tablet & small desktop */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 per row ONLY on wide screens */
@media (min-width: 1350px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ---------- Consent Section ---------- */

.confirm-consent {
  max-width: 600px;
  margin: 28px auto 14px;
  padding: 0 10px;
}

.confirm-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d6dbe6;
  cursor: pointer;
}

.confirm-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.confirm-checkbox span {
  display: block;
}

/* ---------- Mobile Improvements ---------- */

@media (max-width: 600px) {
  .form-wrapper {
    padding: 0 14px;
  }

  .confirm-textarea {
    font-size: 16px;
  }

  .confirm-checkbox {
    font-size: 0.9rem;
    gap: 10px;
  }

  .confirm-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}


