/* ===== FriendsQuest Footer Styles ===== */
.footer {
  background: linear-gradient(145deg, #4231a0, #2c254d); /* rich purple gradient */
  color: #f7f4ff;
  padding: 3rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  color: #2cb67d; /* FriendsQuest Purple */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #d9d9ff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-column ul li a:hover {
  color: #7f5af0; /* FriendsQuest Green */
  text-shadow: 0 0 6px #2cb67d33;
}

.footer-credit {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #d9d9ff;
  opacity: 0.9;
}

.footer-legal {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
  color: #d9d9ff;
}

.footer-legal a {
  color: #d9d9ff;
  text-decoration: none;
  margin: 0 6px;
}

.footer-legal a:hover {
  text-decoration: underline;
}


/* Responsive Enhancements */
@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
