/* Language Selector Styles */
.language-selector {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-1px);
}

.lang-icon {
  font-size: 16px;
}

.lang-text {
  font-size: 14px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  text-align: left;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(249, 115, 22, 0.1);
}

.lang-option.active {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  font-weight: 600;
}

.lang-flag {
  font-size: 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .language-selector {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .lang-btn {
    width: 100%;
    justify-content: center;
  }
  
  .lang-dropdown {
    right: auto;
    left: 0;
    width: 100%;
  }
}

/* Mobile menu adjustments */
.nav-links.show .language-selector {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.nav-links.show .lang-btn {
  width: 100%;
}
