@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Footer Base */
.footer-bg {
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  color: #F7F7F7;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

/* Typography */
.footer-bg h6 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #e258bd;
}
.footer-bg p,
.footer-bg small {
  color: #cfcfcf;
  line-height: 1.6;
}

/* Logo */
.footer-logo img {
  max-height: 50px;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.12);
}
.footer-logo p a { 
  color: #e258bd; 
  text-decoration: none; 
}
.footer-logo p a:hover {
  color: #fff;
}

/* Quick Links */
.footer-links ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: #F7F7F7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.5s, text-shadow 0.5s;
  padding: 2px 0;
  position: relative;
}
.footer-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #e258bd;
  transition: width 0.3s;
  margin-top: 2px;
}
.footer-links a:hover {
  color: #e258bd;
  text-shadow: 0px 1px 8px rgba(255,215,0,0.13);
}
.footer-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-social ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .footer-social ul {
    justify-content: flex-end;
  }
}

.footer-social li {
  display: inline-block;
  font-size: 1.25rem;
}
.footer-social a {
  color: #F7F7F7;
  padding: 0.6em;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  font-size: 1.3em;
}
.footer-social a:hover {
  background: #e258bd33;
  color: #e258bd;
  box-shadow: 0 0 14px #e258bd44;
}

/* Copyright Bar */
.footer-copyright {
  border-top: 1px solid #3a3b3d;
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.2rem;
  color: #bbbbbb;
  font-size: 0.97rem;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .footer-logo,
  .footer-links,
  .footer-social {
    text-align: center !important;
    margin-bottom: 2rem;
  }
  .footer-social ul {
    justify-content: center !important;
  }
}

