/* ==========================================================
   Footer - Single Line
   ========================================================== */

footer {
  background: #fafafa;
  padding: 12px 5%;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap; /* prevent wrapping */
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mini {
  font-weight: var(--font-weight-bold);
  font-size: 1.2rem;
  color: var(--color-text);
}

.footer-text .brand-name{
  font-weight: var(--font-weight-bold);
  padding-left:1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-text .brand-tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left:1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-copy {
  margin-left: auto;
  white-space: nowrap; /* prevent breaking */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-copy {
    margin-left: 0;
  }
}
