/* Language Switcher - integrated in navbar */
.navbar-custom .navbar-nav > li.language-switcher {
  display: flex;
  align-items: center;
  padding-left: 15px;
  margin-left: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-custom .navbar-nav > li.language-switcher > a {
  display: inline-block;
  padding: 10px 5px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  background: none !important;
  border: none !important;
}

.navbar-custom .navbar-nav > li.language-switcher > a:hover {
  color: #fff;
  background: none !important;
}

.navbar-custom .navbar-nav > li.language-switcher > a.active {
  color: #fff;
}

.navbar-custom .navbar-nav > li.language-switcher .lang-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  margin: 0 3px;
  font-weight: 400;
}

/* Mobile navigation */
@media (max-width: 767px) {
  .navbar-custom .navbar-nav > li.language-switcher {
    display: flex;
    justify-content: center;
    border-left: none;
    border-bottom: 1px solid rgba(73, 71, 71, 0.15);
    padding: 10px 15px;
    margin-left: 0;
  }
  
  .navbar-custom .navbar-nav > li.language-switcher > a {
    padding: 5px 8px;
  }
}