/* ==================== 
   Footer Component 
   ==================== */

.footer {
  background-color: transparent;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.footer-social a {
  color: #414141;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: #FF1A40;
}

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

.footer-copyright {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .footer-social {
    gap: 1.5rem;
  }
  
  .footer-social svg {
    width: 20px;
    height: 20px;
  }
}