

/* =========================================
   PROFESSIONAL FOOTER Footer-BibliaGodBles.css
========================================= */

.ym-footer {
  position: relative;
  overflow: hidden;

  margin-top: 90px;

  padding: 80px 28px 34px;

  background:
    linear-gradient(
      180deg,
      #0f172a 0%,
      #111827 100%
    );

  color: #f8fafc;
}

/* LIGHT EFFECT */

.ym-footer-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top,
      rgba(255,255,255,0.06),
      transparent 45%);

  pointer-events: none;
}

/* WRAPPER */

.ym-wrapper {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
}

/* BRAND */

.ym-footer-brand {
  text-align: center;

  margin-bottom: 55px;
}

.footer-brand-logo {
  margin-bottom: 18px;
}

.ym-footer-brand h3 {
  margin-bottom: 18px;

  font-size: 2rem;

  font-family: 'Cinzel', serif;

  color: #f5e6b3;
}

.ym-footer-brand p {
  max-width: 760px;

  margin: 0 auto;

  color: #cbd5e1;

  line-height: 1.9;

  font-size: 1rem;
}

/* LINKS */

.ym-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-bottom: 60px;
}

.footer-column {
  padding: 28px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.05);
}

.footer-column h4 {
  margin-bottom: 20px;

  color: #f5e6b3;

  font-size: 1.1rem;

  letter-spacing: 0.04em;
}

.footer-column a {
  display: block;

  margin-bottom: 14px;

  color: #dbe4ee;

  text-decoration: none;

  transition: all 0.2s ease;
}

.footer-column a:hover {
  color: #f5e6b3;

  transform: translateX(4px);
}

.footer-column p {
  color: #cbd5e1;

  line-height: 1.8;
}

/* VERSE */

.ym-footer-verse {
  text-align: center;

  margin-bottom: 50px;

  padding: 36px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(245,230,179,0.10),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(245,230,179,0.12);
}

.ym-footer-verse p {
  margin-bottom: 14px;

  color: #ffffff;

  font-size: 1.25rem;

  line-height: 1.8;

  font-style: italic;

  font-family: 'Libre Baskerville', serif;
}

.ym-footer-verse span {
  color: #f5e6b3;

  font-weight: 700;
}

/* BOTTOM */

.ym-footer-bottom {
  padding-top: 24px;

  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  flex-wrap: wrap;
}

.ym-footer-bottom p {
  margin: 0;

  color: #94a3b8;

  font-size: 0.95rem;
}

/* MOBILE */

@media (max-width: 900px) {

  .ym-footer-links {
    grid-template-columns: 1fr;
  }

  .ym-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width: 640px) {

  .ym-footer {
    padding: 60px 18px 30px;
  }

  .ym-footer-brand h3 {
    font-size: 1.7rem;
  }

  .ym-footer-verse {
    padding: 28px 22px;
  }

  .ym-footer-verse p {
    font-size: 1.05rem;
  }

}