/* FOOTER START */
.footer {
  background: #f2f2f2;
  padding: 16px 12px;
  border-top: 1px solid #ccc;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #222;
}

.footer-column p {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #0077cc;
  font-size: 13px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.sponsor-logo img {
  margin-top: 8px;
  max-width: 100px;
}

/* Alt Telif Sat覺r覺 */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 16px;
  }

  .footer-bottom {
    margin-top: 16px;
  }
}


.geri-buton {
  position: fixed;
  bottom: 5px;   /* Footer’dan yukarıya mesafe */
  left: 20px;     /* Sol kenardan mesafe */
  z-index: 1000;  /* Her şeyin üstünde olsun */
}

.geri-buton a {
  text-decoration: none;
}

.geri-buton button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;

  /* Arka plan uyumlu gri geçişli */
  background: linear-gradient(145deg, #e0e0e0, #cfcfcf);
  color: #333;

  /* Hafif gölge */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.geri-buton button:hover {
  background: linear-gradient(145deg, #d32f2f, #b71c1c);
  color: #fff;
  transform: scale(1.1);
}


/* FOOTER END*/
/* ---------------------------------------------------------------------------*/


/* START TRANSLATE*/
/* ---------------------------------------------------------------------------*/

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.flag-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    /* Bayrağın etrafına ince bir kontür ekleyerek belirginleştirelim */
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
    object-fit: cover;
}

.flag-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    border-color: #3498db; /* Üzerine gelince sitenin ana rengini alsın */
}


/* TRANSLATE POPUP STYLE */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.current-lang {
    cursor: pointer;
}

.lang-dropdown {
    display: none; /* Varsayılan kapalı */
    position: absolute;
    right: 0;
    top: 45px;
    background: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 8px 0;
    overflow: hidden;
}

.lang-dropdown.show {
    display: block; /* Tıklanınca açılır */
}

.lang-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-item:hover {
    background: #f1f1f1;
}

.lang-item.active {
    background: #eef7fd;
    font-weight: bold;
}

.flag-icon-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.main-flag {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    object-fit: cover;
}


/* END TRANSLATE*/
/* ---------------------------------------------------------------------------*/






/* ---------------------------------------------------------------------------*/
/* START TOP BAR */
/* ---------------------------------------------------------------------------*/

.top-bar {
    background-color: #1a252f; /* Koyu Lacivert/Gri */
    color: #ecf0f1; /* Kırık Beyaz */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 13px;
    padding: 10px 0; /* Mobilde parmakla dokunmayı kolaylaştırmak için biraz artırdım */
    border-bottom: 1px solid #34495e;
    width: 100%;
}

.tb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* İki uca yasla */
    align-items: center;
}

.tb-left {
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* Sloganın başındaki kırmızı nokta */
.tb-icon {
    color: #e74c3c;
    margin-right: 8px;
    font-size: 12px;
    animation: pulse 2s infinite; /* Hafif bir yanıp sönme efekti verelim */
}

/* Canlılık hissi veren animasyon */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.tb-right {
    font-size: 13px;
}

.tb-right a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 5px;
}

.tb-right a:hover {
    color: #3498db; /* Hover olunca sitenin ana mavisi */
}

/* MOBİL UYUMLULUK */
@media (max-width: 600px) {
    .tb-container {
        flex-direction: column; /* Alt alta diz */
        gap: 8px;
        text-align: center;
    }
    
    .tb-right {
        font-size: 12px; /* Mobilde yazı bir tık küçülsün */
        opacity: 0.9;
    }
}

/* END TOP BAR */
/* ---------------------------------------------------------------------------*/















