/* ==========================================================================
   footer.css
   FOOTER – GOLD TITLES / BLUE TEXT → HOVER WHITE
   ========================================================================== */

/* 1) Footer Tokens */
.site-footer.footer-lite {
  --footer-bg-1: #0f2443;
  --footer-bg-2: #0b1d36;

  --footer-blue: #fcfcfc;     /* normal metin */
  --footer-white: #ffffff;   /* hover */
  --footer-gold: #d4af37;    /* SADECE BAŞLIKLAR */

  --footer-border: rgba(255,255,255,0.10);
}

/* 2) Footer Shell */
.site-footer.footer-lite {
  background: linear-gradient(180deg, var(--footer-bg-1) 0%, var(--footer-bg-2) 100%);
  color: var(--footer-blue);
  border-top: 1px solid var(--footer-border);
  overflow-x: clip;
}

/* 3) Spacing */
.site-footer.footer-lite .container.py-5 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

/* 4) Logo */
.footer-center .footer-logo {
  height: 52px;
  width: auto;
}

/* 5) BAŞLIKLAR – GOLD VE SABİT */
.footer-title {
  color: var(--footer-gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
  cursor: default;
}

/* Başlık hover’da DEĞİŞMEZ */
.footer-title:hover {
  color: var(--footer-gold);
}

/* 6) DİĞER TÜM METİNLER – MAVİ */
.site-footer.footer-lite p,
.site-footer.footer-lite li,
.site-footer.footer-lite a {
  color: var(--footer-blue);
  transition: color 0.16s ease, transform 0.16s ease;
}

/* Açıklama */
.footer-desc {
  max-width: 62ch;
  line-height: 1.8;
  font-size: 14px;
}

/* 7) Link Lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}

/* Link başı işaret yok */
.footer-links a::before {
  content: none;
}

/* 8) HOVER DAVRANIŞI (BAŞLIKLAR HARİÇ HER ŞEY) */
.site-footer.footer-lite a:hover,
.site-footer.footer-lite li:hover,
.site-footer.footer-lite p:hover {
  color: var(--footer-white);
  transform: translateX(2px);
}

/* 9) Bottom Bar */
.footer-bottom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid var(--footer-border);
  background: rgba(0,0,0,0.28);
}

.footer-bottom-link {
  text-decoration: none;
}

/* 10) Social Icons – MAVİ → BEYAZ */
.footer-social-bottom {
  display: flex;
  gap: 10px;
}

.footer-social-bottom a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);

  color: #ffffff !important;
  text-decoration: none;

  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.footer-social-bottom a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.footer-social-bottom a i {
  font-size: 18px;
  line-height: 1;
  color: #ffffff !important;
}

/* 11) Social alignment */
.footer-bottom-inner {
  position: relative;
}

@media (min-width: 768px) {
  .footer-social-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767.98px) {
  .footer-social-center {
    position: static;
    transform: none;
    order: 3;
    margin-top: 10px;
  }
}

/* 12) Overflow Guards */
.site-footer.footer-lite a,
.site-footer.footer-lite p,
.site-footer.footer-lite li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom-inner > *,
.footer-center > *,
.site-footer.footer-lite [class*="col"],
.site-footer.footer-lite [class*="footer-"] {
  min-width: 0;
}