.footer {
  background: #16181d; /* Slightly darker than section */
  padding: 40px 8%;
  text-align: center;
  border-top: 1px solid rgba(46, 230, 201, 0.1);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #a0a4ab;
  font-size: 22px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #e3e6e5;
  transform: translateY(-3px);
}

.footer-copy {
  color: #5a5e66;
  font-size: 13px;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}