/* footer.css — Deep UI Footer (Tailored Structure) */

.footer {
  margin-top: auto; /* Ensures footer stays at the bottom if content is short */
  width: 100%;
  background: #06070a; /* Ultra deep background to anchor the page */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

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

/* ── Text & Info ── */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-info p {
  color: #64748b; /* --text-dim */
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  margin: 0;
}

.footer-info a {
  color: #94a3b8; /* --text-muted */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-info a:hover {
  color: #3b82f6; /* Accent blue hover for email */
}

/* ── Social Links ── */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  object-fit: contain;
  transition: opacity 0.3s ease;
  
  /* If your social icons are black by default, this turns them white */
  filter: invert(1) brightness(2); 
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

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

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

  .footer-info {
    align-items: center;
  }
}