/* Dil Seçici Stilleri */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 15px;
  height: 100%;
}

.navbar-nav > .language-switcher {
  display: flex;
  align-items: center;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.language-switcher button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
}

.language-switcher button:hover {
  background: rgba(207, 113, 20, 0.2);
  border-color: #cf7114;
  color: #fff;
  transform: translateY(-2px);
}

.language-switcher button.active {
  background: #cf7114;
  border-color: #cf7114;
  color: #fff;
  box-shadow: 0 2px 8px rgba(207, 113, 20, 0.3);
}

.language-switcher button:focus {
  outline: none;
}

/* Navbar scroll olduğunda dil seçici stilleri */
.navbar-custom.navbar-custom-light .language-switcher button {
  border-color: rgba(17, 17, 17, 0.3);
  color: rgba(17, 17, 17, 0.7);
}

.navbar-custom.navbar-custom-light .language-switcher button:hover {
  border-color: #cf7114;
  color: #cf7114;
  background: rgba(207, 113, 20, 0.1);
}

.navbar-custom.navbar-custom-light .language-switcher button.active {
  background: #cf7114;
  border-color: #cf7114;
  color: #fff;
}

/* Mobil görünüm için */
@media (max-width: 991px) {
  .language-switcher {
    margin: 15px 0;
    justify-content: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .language-switcher button {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .navbar-custom .navbar-collapse .language-switcher {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* Dil geçiş animasyonu */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-transition {
  animation: fadeIn 0.3s ease;
}

