/* Footer */

footer {
  padding: 8rem 4rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.footer-subtitle {
  font-size: 1.2rem;
  opacity: 0.6;
  margin-bottom: 4rem;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.5;
}

.lien-beviweb {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.8rem;
  }

  .summary,
  .projects,
  .clients,
  .influencers,
  .services {
    padding: 4rem 2rem;
  }

  footer {
    padding: 4rem 2rem 2rem;
  }

  .project-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .influencers-grid {
    grid-template-columns: 1fr;
  }
}
