/* Follow Christ Page Styles */

/* Hero Section */
.follow-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}

.follow-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 39, 70, 0.75);
}

.follow-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 0 20px;
}

.follow-hero__title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.follow-hero__title-accent {
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.follow-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-style: italic;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

/* Intro Section */
.follow-intro {
  background: white;
  padding: 80px 20px;
}

.follow-intro__container {
  max-width: 900px;
  margin: 0 auto;
}

.follow-intro__text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-gray-900);
  margin: 0 0 25px 0;
}

.follow-intro__highlight {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-gray-900);
  margin: 0;
}

.follow-intro__highlight strong {
  font-weight: 700;
}

/* Truth Section */
.follow-truth {
  background: var(--color-primary);
  padding: 80px 20px;
  color: white;
}

.follow-truth__container {
  max-width: 800px;
  margin: 0 auto;
}

.follow-truth__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: left;
}

.follow-truth__subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-style: italic;
  margin: 0 0 50px 0;
  opacity: 0.9;
  text-align: left;
}

.follow-truth__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.truth-item {
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: background 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.truth-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.truth-item.active {
  background: white;
}

.truth-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  text-align: left;
}

.truth-item__question:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.truth-item__question:focus {
  outline: none;
}

.truth-item__left {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

.truth-item__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.truth-item.active .truth-item__number {
  color: var(--color-primary);
}

.truth-item__text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s ease;
}

.truth-item.active .truth-item__text {
  color: var(--color-primary);
}

.truth-item__icon {
  flex-shrink: 0;
  margin-left: 15px;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
}

.truth-item:hover .truth-item__icon {
  color: rgba(255, 255, 255, 0.7);
}

.truth-item.active .truth-item__icon {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.truth-item__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.truth-item.active .truth-item__answer {
  max-height: 500px;
  padding: 0 30px 30px 30px;
}

.truth-item__verse {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-secondary);
  margin: 0 0 15px 0;
  font-style: italic;
  font-weight: 600;
}

.truth-item__answer p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-primary);
  margin: 0;
}

/* Decision Section */
.follow-decision {
  background: white;
  padding: 80px 20px;
}

.follow-decision__container {
  max-width: 1200px;
  margin: 0 auto;
}

.follow-decision__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px 0;
  color: var(--color-primary);
}

.follow-decision__text {
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-gray-900);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

.follow-decision__text strong {
  font-weight: 700;
}

.follow-decision__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.follow-decision__left,
.follow-decision__right {
  text-align: left;
}

.follow-decision__heading {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px 0;
}

.follow-decision__prayer {
  background: var(--color-gray-100);
  padding: 30px;
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 40px;
}

.follow-decision__prayer p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-gray-900);
  margin: 0 0 10px 0;
  font-style: italic;
}

.follow-decision__prayer p:last-child {
  margin-bottom: 0;
}

.follow-decision__form-placeholder {
  background: var(--color-gray-100);
  border: 2px dashed var(--color-gray-200);
  border-radius: 8px;
  min-height: 400px;
}

/* Responsive */
@media (max-width: 768px) {
  .follow-hero {
    min-height: 280px;
    padding-top: 80px;
  }

  .follow-hero__title {
    font-size: 2rem;
  }

  .follow-hero__subtitle {
    font-size: 1.1rem;
  }

  .follow-decision__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
