/* ============================
   FOOTER STYLES
   ============================ */

/* Genel site footer */
.site-footer {
  font-size: 0.9rem;
  color: #ffffff;
  width: 100%;
}

/* ============================
   Footer Section Blocks (tam genişlik şeritler)
   ============================ */
.footer-section {
  width: 100%;
  padding: 2.5rem 0;
}

.features-section {
  background: linear-gradient(135deg, #000000, #2b2b2b);
}
.payments-section {
  background: linear-gradient(135deg, #000000, #1a1a1a);
}
.main-section {
  background: linear-gradient(135deg, #1a1a1a, #000000);
}
.copyright-section {
  background: linear-gradient(135deg, #000000, #333333);
  padding: 1rem 0;
  text-align: center;
}

/* ============================
   Feature Cards (eşit yükseklik)
   ============================ */
.footer-feature {
  flex: 1;
  min-height: 180px;
  background: linear-gradient(135deg, #2a2a2a, #000000);
  padding: 1.5rem;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-feature i {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #D90404;
}
.footer-feature p {
  margin: 0;
  font-weight: 500;
}
.footer-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

/* ============================
   Payment Logos
   ============================ */
.footer-payments {
  display: flex;
  justify-content: center; /* desktop default: ortalı */
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 1rem 0;
}
.footer-payments img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-payments img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ============================
   Footer Linkler
   ============================ */
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link i {
  color: #D90404;
}
.footer-link:hover {
  color: #D90404;
}

/* ============================
   Footer Başlıklar
   ============================ */
.site-footer h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #D90404;
  text-transform: uppercase;
}

/* ============================
   Copyright
   ============================ */
.footer-rights {
  font-size: 0.8rem;
  color: #bbb;
  text-align: center;
}

/* ============================
   Mobil
   ============================ */
@media (max-width: 576px) {
  .site-footer {
    text-align: left;
  }
  .site-footer h6 {
    text-align: left;
  }
  .site-footer .footer-link {
    justify-content: flex-start;
  }
  .footer-payments {
    justify-content: center; /* mobilde ortalı */
    gap: 12px;
  }
  .footer-payments img {
    height: 32px;
    padding: 4px 6px;
  }
  .footer-rights {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.4;
  }
}


/* Developer link */
.developer-link {
  color: #ffffff;              /* kırmızı varsayılan */
  text-decoration: none;       /* alt çizgiyi kaldır */
  transition: color 0.3s ease; /* yumuşak geçiş */
}

.developer-link:hover {
  color: #D90404;              /* hover için daha parlak kırmızı */
  text-decoration: underline;  /* hover’da alt çizgi istersen */
}
