/**
 * Footer Component Styles
 * Clean footer — no blobs, no forced background
 */

/* === FOOTER CONTENT === */
.flexiq-footer-inner {
  position: relative;
  z-index: 1;
}

/* === LINKS === */
.flexiq-footer-links a {
  color: #0c2212;
  text-decoration: none;
  transition: opacity 0.2s;
}

.flexiq-footer-links a:hover {
  opacity: 0.7;
}

footer.wp-block-template-part a {
  color: #0c2212;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

footer.wp-block-template-part a:hover {
  opacity: 0.65;
}

/* === TYPOGRAPHY === */
footer.wp-block-template-part p,
footer.wp-block-template-part h4 {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === COPYRIGHT === */
.flexiq-footer-copyright {
  text-align: right;
}

/* === MOBILE BACKGROUND IMAGE SWAP === */
@media (max-width: 767px) {
  .flexiq-footer-wrapper {
    background-image: url('/wp-content/uploads/2026/03/Mobile-Footer-BG.png') !important;
    background-size: cover !important;
    background-position: center bottom !important;
  }
}

/* === RESPONSIVE — MOBILE (< 768px) === */
@media (max-width: 768px) {
  .flexiq-footer-copyright {
    text-align: left;
  }

  footer.wp-block-template-part .wp-block-columns {
    flex-direction: column !important;
    gap: 40px !important;
  }

  footer.wp-block-template-part .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }
}

/* === RESPONSIVE — SMALL MOBILE (< 480px) === */
@media (max-width: 480px) {
  footer.wp-block-template-part .wp-block-columns {
    gap: 32px !important;
  }
}
