/* Dil seçimi dropdown (temiz ve stabil) */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #343a40;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-lang:hover,
.btn-lang:focus {
  background-color: #495057;
  outline: none;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 115%;
  left: 0;
  background-color: #343a40;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  list-style: none;
  padding: 6px 0;
  min-width: 140px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.lang-menu li {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  color: #fff;
  user-select: none;
}

.lang-menu li:hover {
  background-color: #495057;
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

/* SEO için görünmez H1 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
