
/* ========================= */
/*      FOOTER               */
/* ========================= */
footer {
  padding: 60px 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 62, 181, 0.2);
  background: rgba(11, 11, 11, 0.9);
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gris-perle);
  margin-bottom: 15px;
}

.footer-copyright {
  color: var(--gris-perle);
  font-size: 0.9rem;
  margin-top: 30px;
}

.footer-age {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--gris-perle);
}

.footer-slogan {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FF3EB5 !important;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-style: italic;
  text-align: center;
}

.footer-links {
  margin: 25px auto;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.footer-links a {
  color: var(--gris-perle);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 10px 5px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--rose-fuchsia);
  text-decoration: underline;
}

.footer-links .separator {
  color: var(--gris-perle);
  opacity: 0.5;
  margin: 0 5px;
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--gris-perle);
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--rose-fuchsia);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 15px 30px;
  }

  .footer-slogan {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    white-space: normal;
    padding: 0 10px;
  }

  .footer-links .separator {
    display: none;
  }

  .footer-links a {
    font-size: 0.85rem;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-copyright {
    font-size: 0.8rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .footer-age {
    font-size: 0.75rem;
  }
}
