/* ============================================================
   LANGUAGE TOGGLE STYLES
   ============================================================ */

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 3px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: rgba(237, 193, 79, 0.12);
  border-color: rgba(237, 193, 79, 0.3);
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border-radius: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.lang-btn.active {
  color: var(--navy-dark, #012d64);
  background: var(--yellow, #FFDF00);
  box-shadow: 0 2px 8px rgba(255, 223, 0, 0.4);
}

/* Flag optional display */
.lang-flag {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 4px;
  display: none; /* hidden by default, enable if flags added */
}

/* Mobile lang toggle in navbar */
@media (max-width: 768px) {
  .lang-toggle {
    transform: scale(0.92);
  }
}
