/* ===================================
   GLOBAL FOOTER - Shared across all pages
   =================================== */

footer {
  background: #3F3E2C;
  color: #fff;
  padding: 15px 20px;
}

.footer-content {
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content .footer-copyright {
  font-size: 11px;
  opacity: 0.5;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
  }

  .footer-content .footer-copyright {
    font-size: 10px;
    order: 2;
  }

  .footer-social {
    order: 1;
  }
}
