/**
 * Language Switcher Styles
 * 
 * Styles for the bilingual (EN/FR) language toggle component
 */

.language-switcher {
  position: relative;
  display: inline-block;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  user-select: none;
}

.lang-option:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
  background: rgba(255, 255, 255, 0.95);
  color: #2C3E50;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-option.active:hover {
  background: rgba(255, 255, 255, 1);
  color: #2C3E50;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .language-switcher {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .lang-switch {
    padding: 3px;
    gap: 3px;
    width: 100%;
  }
  
  .lang-option {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
    flex: 1;
  }
}
