.beliefs-section,
.leadership-section-link,
.mother-section-link,
.history-section-link {
  position: relative;
  min-height: 60vh;
  width: calc(100% - 4rem);
  margin: 2rem;
  background-image: url("../../assets/IMG_1865.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 1rem;
  overflow: hidden;
}

.section-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--primary-1) 15%, rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1;
}

.section-content {
  max-width: 50rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.section-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  color: var(--neutral-light);
  box-shadow: 0 8px 24px rgba(48, 92, 222, 0.4);
}

.section-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
  color: var(--neutral-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.section-content p {
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.section-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  color: var(--neutral-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(48, 92, 222, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-btn i {
  transition: transform 0.3s ease;
}

.section-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(48, 92, 222, 0.6);
}

.section-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .beliefs-section,
  .leadership-section-link,
  .mother-section-link,
  .history-section-link {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    min-height: 50vh;

    background-attachment: scroll;

    background-position: center center;
  }

  .section-overlay {
    background: color-mix(in srgb, var(--primary-1) 20%, rgba(0, 0, 0, 0.65));
  }

  .section-content {
    gap: 0.2rem;
  }

  .section-content h2 {
    font-size: var(--fs-h3);
  }

  .section-content p {
    font-size: var(--fs-base);
  }

  .section-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.25rem;
  }

  .beliefs-section {
    background-image: url("../../assets/about/open-book-981405_1920.jpg");
  }

  .leadership-section-link {
    background-image: url("../../assets/about/pastorG-and-elect-ladyG.png");
    background-position: center 10%;
  }

  .mother-section-link {
    background-image: url("../../assets/mothers/Screenshot\ 2025-12-23\ 132117.png");
  }

  .history-section-link {
    background-image: url("../../assets/about/ctc-history-header.jpg");
  }
}

@media (max-width: 900px) {
  .beliefs-section,
  .leadership-section-link,
  .mother-section-link,
  .history-section-link {
    width: calc(100% - 2.5rem);
    margin: 1.25rem;
    min-height: 47vh;
  }

  .section-overlay {
    background: color-mix(in srgb, var(--primary-1) 18%, rgba(0, 0, 0, 0.6));
    padding: 1.75rem;
  }

  .section-content {
    gap: 1rem;
  }

  .section-content h2 {
    font-size: 3rem;
  }

  .section-content p {
    font-size: 1.5rem;
  }

  .section-icon {
    width: 4.25rem;
    height: 4.25rem;
    font-size: 2.1rem;
  }

  .section-btn {
    padding: 0.95rem 2.25rem;
  }

  .beliefs-section {
    background-image: url("../../assets/about/open-book-981405_1920.jpg");
  }

  .leadership-section-link {
    background-image: url("../../assets/about/pastorG-and-elect-ladyG.png");
    background-position: center 10%;
  }

  .mother-section-link {
    background-image: url("../../assets/mothers/Screenshot\ 2025-12-23\ 132117.png");
  }

  .history-section-link {
    background-image: url("../../assets/about/ctc-history-header.jpg");
  }
}

@media (max-width: 768px) {
  .beliefs-section,
  .leadership-section-link,
  .mother-section-link,
  .history-section-link {
    width: calc(100% - 2rem);
    margin: 1rem;
    min-height: 45vh;
  }

  .section-overlay {
    padding: 1.5rem;
  }

  .section-content {
    gap: 0.4rem;
  }

  .section-content h2 {
    font-size: var(--fs-h4);
  }

  .section-content p {
    font-size: 1rem;
  }

  .section-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .section-btn {
    padding: 0.875rem 2rem;
    font-size: var(--fs-small);
  }

  .beliefs-section {
    background-image: url("../../assets/about/open-book-981405_1920.jpg");
  }

  .leadership-section-link {
    background-image: url("../../assets/about/pastorG-and-elect-ladyG.png");
  }

  .mother-section-link {
    background-image: url("../../assets/mothers/Screenshot\ 2025-12-23\ 132117.png");
  }

  .history-section-link {
    background-image: url("../../assets/about/ctc-history-header.jpg");
  }
}

@media (max-width: 480px) {
  .beliefs-section,
  .leadership-section-link,
  .mother-section-link,
  .history-section-link {
    min-height: 50vh;
    width: calc(100% - 2rem);
    margin: 1rem;
  }

  .beliefs-section {
    background-image: url("../../assets/about/open-book-981405_1920.jpg");
  }

  .leadership-section-link {
    background-image: url("../../assets/about/pastorG-and-elect-ladyG.png");
  }

  .mother-section-link {
    background-image: url("../../assets/mothers/Screenshot\ 2025-12-23\ 132117.png");
  }

  .history-section-link {
    background-image: url("../../assets/about/ctc-history-header.jpg");
  }

  .section-overlay {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
  }

  .section-content {
    gap: 0.2rem;
  }

  .section-content h2 {
    font-size: 1.85rem;
  }

  .section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .section-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }

  .section-btn {
    padding: 0.75rem 1.75rem;
    font-size: var(--fs-small);
  }
}

@media (max-width: 400px) {
  .beliefs-section,
  .leadership-section-link,
  .mother-section-link,
  .history-section-link {
    width: calc(100% - 1.5rem);
    margin: 0.75rem;
    min-height: 50vh;
  }

  .beliefs-section {
    background-image: url("../../assets/about/open-book-981405_1920.jpg");
  }

  .leadership-section-link {
    background-image: url("../../assets/about/pastorG-and-elect-ladyG.png");
  }

  .history-section-link {
    background-image: url("../../assets/about/ctc-history-header.jpg");
  }

  .section-overlay {
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
  }

  .section-content {
    gap: 0.5rem;
  }

  .section-content h2 {
    font-size: 1.65rem;
  }

  .section-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-icon {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.85rem;
  }

  .section-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 375px) {
  .beliefs-section,
  .leadership-section-link,
  .mother-section-link,
  .history-section-link {
    width: calc(100% - 1.25rem);
    margin: 0.625rem;
    min-height: 50vh;
  }

  .beliefs-section {
    background-image: url("../../assets/about/open-book-981405_1920.jpg");
  }

  .leadership-section-link {
    background-image: url("../../assets/about/pastorG-and-elect-ladyG.png");
  }

  .history-section-link {
    background-image: url("../../assets/about/ctc-history-header.jpg");
  }

  .section-overlay {
    padding: 2rem 1.25rem;
    background: rgba(0, 0, 0, 0.45);
  }

  .section-content {
    gap: 0.4rem;
  }

  .section-content h2 {
    font-size: 1.5rem;
  }

  .section-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.65rem;
  }

  .section-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}
