/* 
**************************************************************** */
/* Footer */
/* 
************************************************************ */

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4rem 1.5rem 1.5rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-logo {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.footer-logo span{
  color: var(--clr-accent);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #c026d3;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: #c026d3;
  color: #0f172a;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #c026d3;
}


@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}