/* Language Switcher Styles */

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: #e7f0ff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.lang-btn:active {
  transform: translateY(0);
}

.lang-btn.active {
  background: var(--gold, #f5c84b);
  color: #2b240d;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(245, 200, 75, 0.3);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--focus, #7bb0ff);
  outline-offset: 2px;
}

/* Mobile styles */
@media (max-width: 1000px) {
  .lang-switcher {
    margin-left: auto;
    margin-right: 8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lang-btn {
    transition: none;
  }
  
  .lang-btn:hover {
    transform: none;
  }
}
