/* =========================================================
   Phoenix Rising Counseling – styles.footer.css
   Footer layout and styling
   (Section 11 from original styles.css)
   ========================================================= */

.site-footer {
  background: linear-gradient(135deg, #1a1024, #120b1b);
  color: var(--color-text-on-dark);
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
}

.footer-title {
  font-size: 1.2rem;
}

/* Footer – company name color override */
.site-footer .footer-title {
  color: var(--color-primary-dark);
}

.footer-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-col p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent-soft);
  text-decoration: underline;
}

.footer-col a:focus-visible {
  color: var(--color-accent-soft);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Social links in footer */
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-social-link {
  font-size: 0.9rem;
}

/* Bottom strip */
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-copy,
.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78); /* normal footer text color */
}

.footer-meta {
  color: var(--color-danger);       /* crisis disclaimer only */
}
