/* NUMBER 5 : FOOTER YAPISI */

/* Arka plan gradyanı ve temel yapı */
.fanchaty-footer {
  width: 100%;
  background: linear-gradient(90deg, #534fe0, #6c49d5, #dd4791);
  background-size: 300% 300%;
  animation: footerFlow 25s ease infinite;
  padding: 100px 40px 30px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid rgba(255,255,255,0.05);
  box-sizing: border-box;
}

@keyframes footerFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grid yapısı: 5 sütun, logosu geniş */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; /* Logo biraz daha geniş */
  gap: 70px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  padding-bottom: 30px;
}

/* Logo */
.footer-logo {
  max-width: 170px;
  margin-bottom: 18px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.7;
  color: #eee;
}

/* Başlıklar */
.footer-grid h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Liste yapısı */
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

/* Linkler */
.footer-grid a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #dd4791;
}

/* Alt bilgiler */
.copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #999;
}

.secure-label {
  font-size: 14px;
  margin-top: 15px;
  color: #8fd1ff;
}

/* Ödeme ikonları - Community içinde */
.payment-inline {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}

.payment-inline img {
  height: 36px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
}

/* Responsive ayarlar */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .payment-inline {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-grid h4 {
    text-align: center;
  }

  .footer-grid ul {
    text-align: center;
  }

  .payment-inline {
    justify-content: center;
  }
}

.footer-grid ul {
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 6px; /* Eskiden 10px idi */
}




  /* diğer footer CSS'lerin */

  @media (max-width: 1280px) {
    footer.fanchaty-footer .footer-grid h4 {
      font-size: 18px !important;
    }
    footer.fanchaty-footer .footer-grid a {
      font-size: 14px !important;
    }
    footer.fanchaty-footer .footer-brand p {
      font-size: 14px !important;
    }
    footer.fanchaty-footer .secure-label,
    footer.fanchaty-footer .copyright {
      font-size: 13px !important;
    }
  }






/* ------------------------------------------------------------ */