
/* ===== LANGUAGE SWITCHER ===== */

.lang-switcher {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

/* Container */
.lang-switcher ul {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem;
  margin: 0;

  /* Contrast surface */
  background: #161b22; /* lighter than deep dark background */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  /* Depth */
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}

/* Links */
.lang-switcher a {
  display: block;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;

  color: #cbd5e1;
  border-radius: 10px;
  transition: all 0.25s ease;
}

/* Hover */
.lang-switcher a:hover {
  background: rgba(255,255,255,0.20);
  color: #ffffff;
}

/* Active language */
.lang-switcher a.active {
  background: linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
  );
  color: #ffffff;
  font-weight: 600;

  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.4),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}

/* Mobile */
@media (max-width: 600px) {
  .lang-switcher ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
