/* Footer page styles */
.footer {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Left brand: site link + Design label */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-site-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-site-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-site-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-design-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}