/*static/css/footer.css*/

/* =========================================================
   FOOTER – Responsive, SaaS style
========================================================= */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem;

  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 320px;
}

.footer-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #111827;
  text-decoration: none;
}

.footer-links a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-description {
    max-width: 100%;
  }
}
