/* ============================================
   footer.css — Site footer with gradient border
   ============================================ */

/* --- Footer Section --- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent), var(--accent-blue), transparent) 1;
  padding-top: 64px;
  padding-bottom: 40px;
}

/* --- Footer Brand Wrapper --- */
.footer__brand {
  flex-shrink: 0;
}

/* --- Footer Inner Layout --- */
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

/* --- Logo --- */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 8px;
}

.footer__logo img {
  border-radius: 8px;
}

/* --- Tagline --- */
.footer__tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* --- Links --- */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--text-primary);
}

/* --- Download Section --- */
.footer__download-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer__download {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Bottom Bar --- */
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* --- Tablet+ (768px) --- */
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__links {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }
}
