/**
 * Footer Component
 * Minimal company footer
 */

.site-footer {
  background: var(--midnight-elevated);
  border-top: 1px solid rgba(49, 120, 198, 0.1);
  padding: var(--space-8) 0 var(--space-6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(230, 232, 235, 0.07);
}

/* Footer logo */
.footer-logo {
  font-family: var(--font-code);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--frost-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer-logo:hover { opacity: 0.7; }

.footer-logo .logo-bracket { color: var(--comment-gray); }
.footer-logo .logo-text    { color: var(--frost-white); }
.footer-logo .logo-accent  { color: var(--brand); }

/* Footer nav links */
.footer-nav {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-nav-link {
  color: var(--frost-tertiary);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-nav-link:hover { color: var(--frost-white); }

/* GitHub icon button */
.footer-github {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(230, 232, 235, 0.1);
  color: var(--frost-tertiary);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-github:hover {
  border-color: var(--brand);
  color: var(--brand-light);
  background: rgba(49, 120, 198, 0.08);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-copyright,
.footer-tagline {
  font-family: var(--font-code);
  font-size: var(--text-sm);
  color: var(--comment-gray);
  margin: 0;
  max-width: none;
}

.footer-tagline { opacity: 0.6; }

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
