.footer {
  background: #f9f9f9;
  border-top: 3px solid #ec6bb0;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 70px;
}

.footer-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 26px;
  color: #555;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-6px) scale(1.2);
}

/* Instagram gradient */
.instagram:hover {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.facebook:hover { color: #1877F2; }
.twitter:hover { color: #000; }
.linkedin:hover { color: #0A66C2; }
.pinterest:hover { color: #E60023; }

/* Footer Links */
.infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #ec6bb0, #3737a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-link:hover {
  transform: scale(1.1);
}

/* Copyright */
.copyright {
  font-size: 14px;
  font-weight: 500;
  color: #777;
}


@media (min-width: 320px) and (max-width: 765px) {

.footer {
  background: #f9f9f9;
  border-top: 3px solid #ec6bb0;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 100px;
}

}