.footer {
  background: var(--text);
  color: #d1d5db;
  padding: 50px 30px 20px;
}

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

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-logo a {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-tagline {
  font-size: 14px;
  margin-top: 8px;
  color: #9ca3af;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

.github-btn {
  background: var(--gradient);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
  display: inline-block;
}

.github-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #9ca3af;
  border-top: 1px solid #374151;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-right {
    margin-top: 15px;
  }
  .footer-logo img {
    width: 40px;
  }
}
