/* ====================== */
/* FOOTER                 */
/* ====================== */
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

footer {
  background: url('./res/footer-background.jpg') bottom center/cover no-repeat;
  color: white;
  padding: 35px 0 15px 0; /* üst ve alt boşluğu daralttık */
  font-family: 'Montserrat', sans-serif;
}

/* Üst Footer */
.footer-top {
  margin-bottom: 5px; /* Çizgiye yaklaşsın */
}

.footer-left-text {
  margin-top: 30px; /* komple aşağı kayar */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 35px;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* tüm sütunlar eşit yükseklikte */
  flex-wrap: wrap;
  gap: 60px; /* Sütun arası kısalttık */
}

.footer-left img {
  height: 26px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  color: #aaa;
  margin: 20px 0 8px;
}

.footer-email {
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(to right, #9f9f9f 0%, #ffffff 10%, #868686 20%);
  background-size: 400% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

/* Sosyal Medya */
.social-icons-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;   /* dikey dizilim */
  justify-content: space-between;
  height: 100%;
  gap: 25px;
}

/* ikon boyutu ve küçük hover animasyonu */
.social-icons-list li a svg {
  width: 22px;
  height: 22px;
  transition: transform .2s ease;
}
.social-icons-list li a:hover svg { transform: scale(1.06); }

/* --- Sosyal ikonlar: base durum (hover/visited ezilmeleri yok) --- */
.social-icons-list a,
.social-icons-list a:visited {
  color: #fff !important;                /* visited da beyaz kalsın */
  transition: color .2s ease;
}

/* SVG mutlaka linkin rengini alsın + dış etkileri sıfırla */
.social-icons-list a svg,
.social-icons-list a svg path {
  fill: currentColor !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transition: fill .2s ease;
}

/* Küçük hover animasyonu (sadece scale) */
.social-icons-list li a svg {
  width: 22px; height: 22px; transition: transform .2s ease;
}
.social-icons-list li a:hover svg { transform: scale(1.06); }

/* --- Marka hover renkleri (yüksek özgüllük + !important) --- */
.social-icons-list li a.youtube:hover,
.social-icons-list li a.youtube:focus-visible   { color: #FF0000 !important; }

.social-icons-list li a.linkedin:hover,
.social-icons-list li a.linkedin:focus-visible  { color: #0A66C2 !important; }

.social-icons-list li a.instagram:hover,
.social-icons-list li a.instagram:focus-visible { color: #E4405F !important; }

.social-icons-list li a.facebook:hover,
.social-icons-list li a.facebook:focus-visible { color: #1877F2 !important; }

.social-icons-list li a.tiktok:hover,
.social-icons-list li a.tiktok:focus-visible { color: #EE1D52 !important; }
  
/* TikTok ikonunu diğerlerinden biraz büyük yap */
.social-icons-list li a.tiktok .social-icon {
  width: 32px;   /* önceki 24px yerine */
  height: 32px;
  margin-left: -5px;
}

/* Klavye ile erişilebilirlik */
.social-icons-list a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
/* Link Sütunları */
.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Alt-üst hizalama */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px; /* Dikey aralık kısaldı */
  margin-top: 5px;
}

.footer-social-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 17px; /* Dikey aralık kısaldı */
  margin-top: 5px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* Alt Footer */
.footer-bottom {
  position: relative;
  margin-top: 15px; /* Daha yakın */
  padding-top: 18px; /* Daha yakın */
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%; /* Ortanın tam merkezi */
  transform: translateX(-50%); /* Merkezden taşma yapmasın */
  width: 100%; /* Ekran boyunca uzasın */
  max-width: 1600px; /* İstersen sınırlı tut */
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}


.footer-bottom-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
}

.footer-bottom-left {
  flex: 1;
  text-align: left;
}

.footer-legal-links {
  flex: 1;
  text-align: right;
}

.footer-legal-links a {
  color: #aaa;
  margin-left: 20px;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

@keyframes shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* ====================== */
/* RESPONSIVE FOOTER (Tablet içerik büyük) */
/* ====================== */
@media (max-width: 1200px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;                /* normal */
    text-align: left;
    padding: 40px 10px 20px;  /* normal */
    flex-wrap: wrap;
  }

  .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-left img.footer-logo {
    margin-top: 8px;
    max-width: 320px;   /* 🔥 içerik büyütüldü */
  }

  .footer-left-text {
    margin-top: 12px;
    font-size: 20px;    /* büyütüldü */
    font-weight: 700;
  }

  .footer-desc {
    font-size: 18px;    /* büyütüldü */
    margin: 10px 0 6px;
  }

  .footer-email {
    font-size: 22px;    /* büyütüldü */
    font-weight: 700;
  }

  .social-icons-list {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
    min-width: 120px;
    font-size: 20px;    /* büyütüldü */
    font-weight: 700;
  }

  .footer-social-links ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
    min-width: 120px;
    font-size: 20px;    /* büyütüldü */
    font-weight: 700;
  }

  .footer-bottom-inner {
    width: 95%;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 15px;
  }

  .footer-legal-links {
    margin-top: 4px;
    text-align: center;
    font-size: 16px;    /* biraz büyütüldü */
  }
}

/* ====================== */
/* RESPONSIVE FOOTER      */
/* ====================== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 40px 10px 20px;
    flex-wrap: wrap;
  }

  .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-left img.footer-logo {
    margin-top: 8px;
  }

  .footer-left-text {
    margin-top: 12px;
  }

  .footer-desc {
    font-size: 12px;
    margin: 8px 0 4px;
  }

  .footer-email {
    font-size: 16px;
  }

  .social-icons-list {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin-top: 8px;
    min-width: 100px;
    font-size: 14px;
  }

  .footer-social-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    min-width: 100px;
    font-size: 14px;
  }

  .footer-bottom-inner {
    width: 95%;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 15px;
  }

  .footer-legal-links {
    margin-top: 4px;
    text-align: center;
  }
}
