/**
 * Footer Component
 * Site footer styles
 */

.site-footer {
  background: var(--midnight-elevated);
  border-top: 1px solid rgba(230, 232, 235, 0.1);
  padding: var(--space-8) 0 var(--space-4);
  margin-top: var(--space-12);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer-section h3 {
  font-size: var(--text-lg);
  color: var(--frost-white);
  margin-bottom: var(--space-3);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: var(--frost-tertiary);
  font-size: var(--text-sm);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--syntax-gold);
}

.footer-description {
  color: var(--frost-tertiary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

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

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--comment-gray);
  font-family: var(--font-code);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  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);
}

.social-link:hover {
  background: var(--midnight-popover);
  border-color: var(--function-blue);
  color: var(--function-blue);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
