/* /assets/css/footer.css */
.jt-footer {
  background: #0f1115;
  color: #bfc5d0;
  border-top: 1px solid #20232a;
  font-size: 13px;
  line-height: 1.55;      /* slightly tighter line height */
  margin-top: auto;       /* sticky footer behavior */
  width: 100%;
}

.jt-footer a {
  color: #c7d2fe;
  text-decoration: underline;
}

.jt-footer a:hover {
  text-decoration: none;
}

/* === Wider content + less vertical fat === */
.jt-footer-inner {
  max-width: 1200px;      /* wider → fewer line breaks */
  margin: 0 auto;
  padding: 16px 18px 18px;
}

/* === Social + FAQ bar === */
.jt-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 14px;
}

/* Social icon row */
.jt-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Base pill style (icon-only buttons) */
.jt-social-pill {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(167, 139, 250, 0.14);   /* soft purple glow */
  border: 1px solid rgba(167, 139, 250, 0.7);
  color: #e5d9ff;                          /* SVG uses currentColor */
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.08s ease,
    box-shadow 0.15s ease,
    color 0.15s ease;
}

.jt-social-pill:hover {
  background: #a855f7;
  border-color: #c4b5fd;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4);
}

.jt-social-pill:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}

/* FAQ link to the right of socials */
.jt-footer-faq-link {
  font-size: 13px;
  color: #c7d2fe;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.5);
  background: rgba(15, 17, 21, 0.9);
  white-space: nowrap;
}

.jt-footer-faq-link:hover {
  background: #1f2933;
  border-color: #c4b5fd;
}

/* === Tighten paragraph spacing === */
.jt-footer-legal {
  margin: 0 0 6px 0;      /* less gap under each legal paragraph */
}

.jt-footer-copy {
  margin: 10px 0 0 0;     /* smaller top gap */
  color: #9aa3af;
  font-size: 12.5px;
}
/* Font Awesome icon sizing inside footer pills */
.jt-social-pill i {
  font-size: 18px;
  line-height: 1;
}

/* Fallback letter (Moxfield) matches roughly */
.jt-social-pill .jt-social-letter {
  font-size: 16px;
  line-height: 1;
}
/* Layout for three items: social icons, Ko-Fi, FAQ */
.jt-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Ko-Fi block sits between icons + FAQ */
.jt-footer-kofi img {
  height: 36px;
  width: auto;
  display: block;
}

/*
Optional: tighten spacing so Ko-Fi feels centered visually,
not stretched by FAQ alignment.
*/
.jt-footer-kofi {
  flex: 1;
  display: flex;
  justify-content: center;
}
.jt-footer-contact {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #b8bcc6;
}

.jt-footer-contact-label {
  margin-right: 6px;
  opacity: 0.85;
}

.jt-footer-contact-email {
  color: #a970ff;
  text-decoration: none;
  font-weight: 500;
}

.jt-footer-contact-email:hover {
  text-decoration: underline;
  color: #c2a0ff;
}
/* Stack contact under the social icons (within the top bar) */
.jt-footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jt-footer-contact {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #b8bcc6;
}

.jt-footer-contact-label {
  margin-right: 6px;
  opacity: 0.85;
}

.jt-footer-contact-email {
  color: #a970ff;
  text-decoration: none;
  font-weight: 500;
}

.jt-footer-contact-email:hover {
  text-decoration: underline;
  color: #c2a0ff;
}
/* Make the top footer bar true left/center/right */
.jt-footer-bar{
  display: grid;
  grid-template-columns: 1fr auto 1fr;  /* left grows, center fits, right grows */
  align-items: center;
  gap: 18px;
}

/* Left slot */
.jt-footer-kofi{
  justify-self: start;
}

/* Center slot */
.jt-footer-social-wrap{
  justify-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Right slot */
.jt-footer-faq-link{
  justify-self: end;
}

/* Optional: tighten the space between icons + email */
.jt-footer-contact{
  margin-top: 6px;
}
/* Ensure proper spacing between the three footer columns */
.jt-footer-bar {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 8px 0;
}

/* Lock left + right outward */
.jt-footer-faq-link {
  justify-self: start;
  white-space: nowrap;
}

.jt-footer-kofi {
  justify-self: end;
}

/* Center column stays centered and readable */
.jt-footer-social-wrap {
  justify-self: center;
  text-align: center;
  max-width: 420px;
}

/* Give icons room to breathe */
.jt-footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
/* Mobile: stack FAQ, socials+email, Ko-Fi instead of squeezing */
@media (max-width: 700px) {
  .jt-footer-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 12px 0;
  }

  .jt-footer-faq-link {
    justify-self: center;
  }

  .jt-footer-kofi {
    justify-self: center;
  }

  .jt-footer-social-wrap {
    justify-self: center;
    max-width: 100%;
  }

  .jt-footer-social {
    flex-wrap: wrap;          /* lets icons wrap cleanly */
    justify-content: center;
    gap: 10px;
  }

  .jt-footer-contact {
    margin-top: 6px;
  }
}
/* --- Footer legal text: force softer color (place at END of file) --- */
.jt-footer p.jt-footer-legal,
.jt-footer .jt-footer-legal,
.jt-footer .jt-footer-legal * {
  color: rgba(200, 205, 215, 0.70) !important;
}

/* Links inside legal text: slightly brighter + hover to white */
.jt-footer .jt-footer-legal a {
  color: rgba(200, 205, 215, 0.85) !important;
  text-decoration-color: rgba(200, 205, 215, 0.55);
}

.jt-footer .jt-footer-legal a:hover {
  color: #ffffff !important;
  text-decoration-color: #ffffff;
}
