/* ==========================================================
   site-extra.css
   Orijinal style.css DEĞİŞTİRİLMEDEN, PHP/MVC dönüşümü sırasında
   eklenen küçük öğeler (ör. dil seçici) için ek stiller.
   ========================================================== */

/* Topbar sağ taraf: sosyal ikonlar + dil seçici bir arada */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.topbar__lang a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #a9c0d8;
  text-decoration: none;
  padding: 3px 7px;
  border-radius: 5px;
  transition: background .15s ease, color .15s ease;
}

.topbar__lang a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.topbar__lang a.is-active {
  color: #fff;
  background: var(--orange, #e87c2a);
}

@media (max-width: 700px) {
  .topbar__social { display: none; }
  .topbar__lang { border-left: 0; padding-left: 0; }
}

/* Logo daha büyük görünsün (orijinal tema değerlerinden biraz daha büyük) */
.logo img {
  height: 78px;
}

.header.is-stuck .logo img {
  height: 64px;
}

.field__error {
  display: block;
  margin-top: 8px;
  color: #c2410c;
  font-size: .82rem;
  font-weight: 600;
}

.field .is-invalid,
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, .12);
}

.form__error {
  display: block;
  margin-bottom: 18px;
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: .92rem;
}
