/* footer.css — Template 1: Premium Minimalist */

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--bg-main);
  padding: 48px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-info a {
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-info a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
  border-color: var(--text-muted);
}

.social-links img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-links a:hover img {
  opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer { padding: 32px 0; }
}